ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
For now, the best thing to do is to follow the template provided in gazebo_plugins or mimic any of the examples in gazebo_plugins. Also take a look at gazebo configuration page to see how to setup plugin paths in your own packages.
Please keep in mind, plugin API's will change soon in F-Turtle, and will require some significant migratory changes/rewrites.
Proceeding on with the current setup, if you take a look at the template presented, there are 4 relevant member functions,
Model::Load(...)
Model::Init()
Model::Update()
callThe new plugin API will be simpler and more flexible, and will require rewrite work.
2 | No.2 Revision |
For now, the best thing to do is to follow the template provided in gazebo_plugins or mimic any of the examples in gazebo_plugins. Also take a look at gazebo configuration page to see how to setup plugin paths in your own packages.
Please keep in mind, plugin API's will change soon in F-Turtle, and will require some significant migratory changes/rewrites.
Proceeding on with the current setup, if you take a look at the template presented, there are 4 relevant member functions,
Model::Load(...)
Model::Init()
Model::Update()
callThe new plugin API will be simpler and more flexible, and will require rewrite work.
3 | new plugin API documentation updates |
For now, the best thing to do is to follow the template provided in gazebo_plugins or mimic any of the examples in gazebo_plugins. Also take a look at gazebo configuration page to see how to setup plugin paths in your own packages.
Please keep in mind, plugin API's will change soon in F-Turtle, and will require some significant migratory changes/rewrites.
Proceeding on with the current setup, if you take a look at the template presented, there are 4 relevant member functions,
Model::Load(...)
Model::Init()
Model::Update()
callThe new plugin API will for gazebo 1.0.0 RC to be simpler and more flexible, and will require released with Fuerte is described on the new gazebo wiki. Conversion from old plugin to the new format requires rewrite work.