We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This pages describes the changes in the gazebo_ros_force plugin in gazebo_plugins for ROS 2 and instructions for migration.
gazebo_ros_force
gazebo_plugins
snake_cased
force_frame
world
link
robotNamespace
<ros><namespace>
bodyName
link_name
topicName
<ros><remapping>gazebo_ros_force:=custom_force</remapping></ros>
<model name='the_model'> ... <link name='box_link'> ... </link> <plugin name="gazebo_ros_force" filename="libgazebo_ros_force.so"> <robotNamespace>demo</robotNamespace> <topicName>force_demo</topicName> <bodyName>box_link</bodyName> </plugin> </model>
<model name='the_model'> ... <link name='box_link'> ... </link> <plugin name="gazebo_ros_force" filename="libgazebo_ros_force.so"> <ros> <!-- Add namespace and remap the default topic --> <namespace>/demo</namespace> <remapping>gazebo_ros_force:=force_demo</remapping> </ros> <!-- Replace camelCase elements with camel_case ones --> <link_name>box_link</link_name> <!-- New elements --> <force_frame>world</force_frame> </plugin> </model>