Gazebo does not spawn mesh
I was trying to spawn a simple differential drive robot with a mesh for the body, the wheels and the caster ball. The meshes are stores in a folder inside the package called meshes. The name of the package is toycar, so in order to include the meshes, I add the following lines to the definition of the wheel link;
<visual>
<origin xyz="0.0 0.0 0.0" rpy="1.57 0.0 0.0"/>
<geometry>
<mesh filename="package://toycar/meshes/wheel.stl" scale="1.0 1.0 1.0" />
</geometry>
</visual>
Even if there is no error appearing in the launch of the node, the mesh of the wheel does not appear. This is extended to the other links, but I only worked with this one for now to isolate the problem.