Not able to import collada(.dae) into Gazebo
I'm trying to import a (.dae) Collada file in the gazebo, But when i run gazebo my_mesh.world
it opens an empty world.
my_mesh.world file:
<?xml version="1.0"?>
<sdf version="1.4">
<world name="default">
<include>
<uri>model://ground_plane</uri>
</include>
<include>
<uri>model://sun</uri>
</include>
<model name="my_mesh">
<pose>0 0 0 0 0 0</pose>
<static>true</static>
<link name="body">
<visual name="visual">
<geometry>
<mesh><uri>file://monkey.dae</uri></mesh>
</geometry>
</visual>
</link>
</model>
</world>
</sdf>
.dae file link: https://drive.google.com/file/d/1DUs7...
Similar question q#35819 with answer "You're going to have to build a URDF of your building..."