Material properties

The material properties (i.e. dynamics engines properties related to shapes) can be accessed via the shape dynamics properties dialog. The material properties of the last selected shape are displayed in a dialog:

[Dynamics engines properties dialog related to shapes]


  • Apply predefined settings: allows you to select a set of predefined settings for a specific behaviour (e.g. no friction).


  • Bullet properties

    Properties related to the Bullet physics library. Make sure to also refer to the Bullet user manual for details.

  • Friction (only Bullet V2.78): a friction value used only with Bullet V2.78. Two colliding objects will have a combined friction value of value1*value2. This does not correspond to the real friction coefficient.
  • Friction (after Bullet V2.78): a friction value used only with Bullet version after V2.78. Two colliding objects will have a combined friction value of value1*value2. This does not correspond to the real friction coefficient.
  • Restitution: a restitution value. Higher values tend to make collisions appear elastic. This does not correspond to the real restitution coefficient.
  • Linear damping: a linear movement damping value, that adds linear drag, and that can increase stability.
  • Angular damping: an angular movement damping value, that adds angular drag, and that can increase stability.
  • Sticky contact (only Bullet V2.78): when this item is checked, then contact points will be very strong, but might lead to instabilities. It is recommended to keep this disabled. This feature is not needed for Bullet versions after V2.78
  • Auto-shrink convex mesh: when this item is checked, then convex meshes will be internally shrunk, in order to compensate the collision margin factor. It is recommended to keep this disabled.
  • Custom collision margin factor: when custom collision margin is set to true, this factor will override the default collision margin factor. The collision margin can helps improve stability. It is recommended to keep the default collision margin factor.


  • ODE properties

    Properties related to the Open Dynamics Engine. Make sure to also refer to the ODE user manual for details.

  • Friction: a friction value. Two colliding objects will have a combined friction value of value1*value2. This does not correspond to the real friction coefficient.
  • Maximum contacts: the maximum number of contact points to generate. Two colliding objects will have a combined maximum contact value of (value1+value2)/2.
  • Soft ERP: the error reduction parameter of the contact normal, this is useful to make surfaces soft. Two colliding objects will have a combined soft ERP value of (value1+value2)/2.
  • Soft CFM: the constraint force mixing parameter of the contact normal, this is useful to make surfaces soft. Two colliding objects will have a combined soft CFM value of (value1+value2)/2.
  • Linear damping: a linear movement damping value, that adds linear drag, and that can increase stability.
  • Angular damping: an angular movement damping value, that adds angular drag, and that can increase stability.


  • Vortex properties

    Properties related to the Vortex Studio engine. Make sure to also refer to the Vortex user manual for details.

  • Restitution: collision normal response elasticity from 0 (inelastic) to 1 for pure elastic.
  • Restitution threshold: velocity threshold below which restitution is ignored.
  • Compliance: material softness (1/stiffness).
  • Damping: normal response damping, for soft contact (low stiffness).
  • Adhesive force: generates glue at the contact.
  • Linear velocity damping: artificial linear velocity damping.
  • Angular velocity damping: artificial angular velocity damping.
  • Auto angular damping enabled: self-managed angular damping for rigid bodies under large tension. Not recommended for wheels or rolling objects.
  • Auto angular damping tension ratio: scaling factor for the self-managed angular damping algorithm.
  • Skin thickness: makes material softer within the skin thickness (makes grasping more stable).
  • Auto-slip enabled: self-management of the contact viscosity.
  • Fast moving: enables additional checks during collision detection to prevent deep penetration or tunnel effect.
  • Treat pure shape as VxConvexMesh: handles a pure shape as a convex shape.
  • Treat convex shape as VxTriangleMeshBVTree: handles a convex shape as a OBB tree database (usually more accurate and stable than convex shapes).
  • Treat random shape as VxTriangleMeshUVGrid: handles a random shape as a 2D grid database (more efficient for large terrain database). 2 VxTriangleMeshUVGrids will never collide with each other.
  • Auto-sleep: feature allowing to disable non-moving object to save simulation time. A part is considered as sleeping when all velocities, acceleration are within corresponding thresholds:
  • Threshold linear speed: linear velocity threshold.
  • Threshold linear acceleration: linear acceleration threshold.
  • Threshold angular speed: angular velocity threshold.
  • Threshold angular acceleration: angular acceleration threshold.
  • Threshold steps: minimum number of steps a part must be awake prior to go to sleep again.
  • Linear primary axis: an axis in the friction plane.
  • Axis orientation: a vector indicating the orientation of the primary axis (the vector will be projected into the friction plane). The vector is relative to the shape reference frame.
  • Friction model: friction model along this axis.
  • Friction coefficient: friction coefficient (used for scaled box and scaled box fast model).
  • Static friction scale: static friction/dynamic friction ratio.
  • Slip: friction viscosity.
  • Slide: friction desired relative velocity along this axis.
  • Linear secondary axis: second axis defining the friction plane.
  • Angular primary axis: allows adding angular friction around the primary axis (rolling resistance).
  • Angular secondary axis: allows adding angular friction around the secondary axis (rolling resistance).
  • Angular normal axis: allows adding angular friction around the normal axis (spin resistance).


  • Newton properties

    Properties related to the Newton Dynamics Engine. Make sure to also refer to the Newton user manual for details.

  • Static friction: the static friction coefficient. Two colliding objects will have a combined friction value of value1*value2.
  • Kinetic friction: the kinetic friction coefficient. Two colliding objects will have a combined friction value of value1*value2.
  • Restitution: the restitution coefficient. Higher values tend to make collisions appear elastic. Two colliding objects will have a combined restitution value of value1+value2.
  • Linear drag: a linear drag value, which can improve stability.
  • Angular drag: an angular drag value, which can improve stability.
  • Fast moving: enables additional checks during collision detection to prevent deep penetration or tunnel effect..


  • Vortex additional information

    Material properties defines how a single shape should behave when colliding with another shape. A collision involves two shapes and their respective material properties. A contact material combines those two material properties into a merged set of properties used to generate the contact forces between the two colliding shapes during the execution of the simulation. The rules for merging two contact materials are as follow:

  • Compliance: take the most compliant and associated damping and restitution.
  • Adhesive force: use the larger value.
  • Skin thickness: use the larger value.
  • Friction model: If the two models are different, priority goes as follow: none, boxProportional, scaledBox, scaledBoxFast, box, neutral. The friction models definitions are:
  • None: no friction.
  • BoxProportional: n/a.
  • ScaledBox: friction boundary = normal force * friction coefficient.
  • ScaledBoxFast: use contact matching and contact force from the previous step. Falls back to scaledBox for a new contact.
  • Box: n/a.
  • Neutral: The lowest priority so the other model is used. If both are neutral, it is frictionless.
  • If the two models are the same, use the lowest friction coefficient.
  • If the friction is not isotropic, different friction properties may be provided in the 2 directions defining the friction plane (linear primary and secondary axes). The axis orientation is a vector in the object's local frame. It's projection in the friction plane defines the linear primary direction. The axis orientation is only used for anisotropic materials. If two anisotropic materials are interacting, one of them will be used, user cannot currently prioritize which one.