Open diebengay opened 4 years ago
I had the same issue, and I solved it by modifying the line of the launch file:
command="$(find xacro)/xacro '$(find realsense_gazebo_plugin)/urdf/rs200_simulation.xacro'"
to my robot model (with the camera instance):
command="$(find xacro)/xacro '$(find my_package)/urdf/my_model.xacro'"
And everything works fine.
Hello! I have a robot model in gazebo. How can I attach the camera instance to my robot using urdf? I have tried it copying the content of _realsenseurdf.launch:
in the simulation.launch of my project where I spawn the robot, and I created the camera instance too in the model.xacro of the robot:
but it doesn't link to the robot and spawns in a separated model called rs200. If I replace the rs200 in this line
by the name of my robot model, the camera appears but the robot not.