mycobot_ros/mycobot_320_moveit/launch/moveit_rviz.launch
2021-07-12 16:07:22 +08:00

16 lines
664 B
XML

<launch>
<arg name="debug" default="false" />
<arg unless="$(arg debug)" name="launch_prefix" value="" />
<arg if="$(arg debug)" name="launch_prefix" value="gdb --ex run --args" />
<arg name="config" default="false" />
<arg unless="$(arg config)" name="command_args" value="" />
<arg if="$(arg config)" name="command_args" value="-d $(find mycobot_320_moveit)/launch/moveit.rviz" />
<node name="$(anon rviz)" launch-prefix="$(arg launch_prefix)" pkg="rviz" type="rviz" respawn="false"
args="$(arg command_args)" output="screen">
<rosparam command="load" file="$(find mycobot_320_moveit)/config/kinematics.yaml"/>
</node>
</launch>