Collisions does not work
Hello,
I am trying to define a custom model for my robot. I have modeled it in Fusion 360, then exported as OBJ and I have written SDF file. When I import the model, I can see the visual and collision meshes line up perfectly. However, when I run the simulation, my model falls through the ground plane. There are no contact points detected. I also tried to convert the collision mesh to STL and use it instead as I have found and issue on a bitbucket claiming OBJ files do not work as collision meshes.
What do I miss in my configuration? I assume it is a silly mistake. My model is available here: https://files.honzamrazek.cz/models.zip
EDIT: I have looked into ~/.gazebo/server-{num}/default.log and there are following lines:
(1569313534 985992523) [Wrn] [ModelDatabase.cc:340] Getting models from[http://models.gazebosim.org/]. This may take a few seconds.
(1569313600 130413970) [Wrn] [SystemPaths.cc:459] File or path does not exist [""] [model://universalModule/meshes/bodyA.stl]
(1569313600 130600551) [Err] [MeshShape.cc:66] No mesh specified
(1569313600 131292799) [Wrn] [SystemPaths.cc:459] File or path does not exist [""] [model://universalModule/meshes/bodyB.stl]
(1569313600 131651177) [Err] [MeshShape.cc:66] No mesh specified
(1569313600 132344317) [Wrn] [SystemPaths.cc:459] File or path does not exist [""] [model://universalModule/meshes/shoeA.stl]
(1569313600 132547141) [Err] [MeshShape.cc:66] No mesh specified
(1569313600 132956421) [Wrn] [SystemPaths.cc:459] File or path does not exist [""] [model://universalModule/meshes/shoeB.stl]
So the problem is with using the model:// path specifier. How to use it properly?