Skip to content

Commit 3545382

Browse files
namikxgithubmkhansenbot
authored andcommitted
Added XACRO to dependencies, corrected demo launch file (space-ros#46)
1 parent f22eb1c commit 3545382

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

custom_gz_plugins/dependencies_source_pkgs.repos

+4
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,7 @@ repositories:
124124
type: git
125125
url: https://github.com/ros2/yaml_cpp_vendor.git
126126
version: humble
127+
xacro:
128+
type: git
129+
url: https://github.com/ros/xacro.git
130+
version: ros2

custom_gz_plugins/launch/demo_world.launch.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ def generate_launch_description():
2222
':'.join([environ.get('GZ_SIM_SYSTEM_PLUGIN_PATH', default=''),
2323
environ.get('LD_LIBRARY_PATH', default='')]),
2424
'GZ_SIM_RESOURCE_PATH':
25-
':'.join([mars_rover_demos_path, mars_rover_models_path + '/models'])}
25+
':'.join([mars_rover_demos_path,
26+
mars_rover_models_path + '/models',
27+
mars_rover_demos_path + '/worlds'])}
2628

2729
urdf_model_path = os.path.join(mars_rover_models_path, 'models', 'curiosity_path',
2830
'urdf', 'curiosity_mars_rover.xacro.urdf')
@@ -77,6 +79,10 @@ def generate_launch_description():
7779
arguments=[
7880
'-name', 'curiosity_path',
7981
'-topic', robot_description,
82+
"-z", "4",
83+
"-x", "0",
84+
"-y", "0",
85+
"-Y", "0",
8086
],
8187
output='screen'
8288
)

0 commit comments

Comments
 (0)