Hi, I'm trying to create an outdoor world using a mesh file that I downloaded from Google SketchUp library and then exported to DAE using Google Sketchup. I am getting this error:
Error [SystemPaths.cc:262] cannot load file [mountain.dae]in GAZEBO_RESOURCE_PATH[/home/sameer/ros/falkor_quadrotor/falkor_quadrotor_gazebo/worlds:/opt/ros/fuerte/stacks/simulator_gazebo/gazebo_worlds:/opt/ros/fuerte/stacks/simulator_gazebo/gazebo/gazebo/share/gazebo]
Error [MeshManager.cc:150] Unable to find file[mountain.dae]
Segmentation fault (core dumped)
the file "mountain.dae" is in /home/sameer/ros/falkor_quadrotor_gazebo/worlds
I'm loading it in with my world file like this:
<model name="ground_model" static="true">
<link name="ground_link">
<origin pose="0 0 0 0 0 0"/>
<collision name="ground_collision">
<geometry>
<mesh filename="mountain.dae" />
</geometry>
I've tried using package://falkor_quadrotor_gazebo/worlds/mountain.dae as the filename as well but that also gave me an unable to find/core dump error.
Thanks.