Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
<mujoco>
    <!-- discardvisual is disabled to include both the colliders and the mesh skins -->
    <!-- fusestatic is disabled to allow collision detection with static parts -->
    <compiler meshdir="meshes/" discardvisual="false" fusestatic="false"/>

    <!-- filterparent is disabled to allow collision detection between children and parent links -->
    <option>
        <flag filterparent="disable"/>
    </option>
</mujoco>

The four settings being set defined by this are the following:

...