Skip to content

Commit

Permalink
rviz_configの名称統一
Browse files Browse the repository at this point in the history
  • Loading branch information
mizonon committed Dec 12, 2024
1 parent 9ec7323 commit f216eff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crane_plus_examples/launch/demo.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ def generate_launch_description():
description_loader.use_camera = LaunchConfiguration('use_camera')
description = description_loader.load()

rviz_config_file_move_group = get_package_share_directory(
rviz_config_moveit = get_package_share_directory(
'crane_plus_moveit_config'
) + '/config/moveit.rviz'
rviz_config_file_camera = get_package_share_directory(
rviz_config_camera = get_package_share_directory(
'crane_plus_examples'
) + '/launch/camera_example.rviz'

Expand All @@ -62,7 +62,7 @@ def generate_launch_description():
condition=UnlessCondition(LaunchConfiguration('use_camera')),
launch_arguments={
'loaded_description': description,
'rviz_config': rviz_config_file_move_group
'rviz_config': rviz_config_moveit
}.items()
)

Expand All @@ -73,7 +73,7 @@ def generate_launch_description():
condition=IfCondition(LaunchConfiguration('use_camera')),
launch_arguments={
'loaded_description': description,
'rviz_config': rviz_config_file_camera
'rviz_config': rviz_config_camera
}.items()
)

Expand Down

0 comments on commit f216eff

Please sign in to comment.