ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

I use launch.actions.ExecuteProcess to launch Gazebo.

So let's say your normal Gazebo process looks like this: ```

...
gz_process = ExecuteProcess(cmd=`gazebo`, '--verbose', LaunchConfiguration('world'),
                                '-s', 'libgazebo_ros_factory.so'], output='screen')
...
   return LaunchDescription([
     ...
        DeclareLaunchArgument(name='world', default_value=default_world_path,
                              description='Absolute path to SDF world file'),
        gz_process,
     ...
    ])

```

Instead of calling gazebo there, you can call gzserver. You can do this using a Launch Argument or just a seperate launch file all together.