From f9d999cf226b8abb12952fe6e49d5bee96fe1cce Mon Sep 17 00:00:00 2001 From: jonwd7 <jon.wd7@gmail.com> Date: Mon, 29 May 2017 10:56:42 -0400 Subject: [PATCH] bhkRigidBody defaults --- nif.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nif.xml b/nif.xml index aec4b00..0fe7aa4 100644 --- a/nif.xml +++ b/nif.xml @@ -2163,17 +2163,17 @@ <add name="Mass" type="float" default="1.0">The body's mass in kg. A mass of zero represents an immovable object.</add> <add name="Linear Damping" type="float" default="0.1"> Damping value for linear movement. A value that is too small fixes the object in place.</add> <add name="Angular Damping" type="float" default="0.05"> Damping value for angular movement.</add> - <add name="Time Factor" type="float" vercond="(User Version 2 > 34)" /> - <add name="Gravity Factor" type="float" vercond="(User Version 2 > 34)" /> - <add name="Friction" type="float" default="0.3">The body's friction.</add> + <add name="Time Factor" type="float" default="1.0" vercond="(User Version 2 > 34)" /> + <add name="Gravity Factor" type="float" default="1.0" vercond="(User Version 2 > 34)" /> + <add name="Friction" type="float" default="0.5">The body's friction.</add> <add name="Rolling Friction Multiplier" type="float" vercond="(User Version 2 > 34)" /> - <add name="Restitution" type="float" default="0.3"> + <add name="Restitution" type="float" default="0.4"> The body's restitution (elasticity). If the restitution is not 0.0 the object will need extra CPU for all new collisions. Try to set restitution to 0 for maximum performance (e.g. collapsing buildings) </add> - <add name="Max Linear Velocity" type="float" default="250.0">Maximal linear velocity.</add> - <add name="Max Angular Velocity" type="float" default="31.4159">Maximal angular velocity. Pi x 10?</add> + <add name="Max Linear Velocity" type="float" default="104.4">Maximal linear velocity.</add> + <add name="Max Angular Velocity" type="float" default="31.57">Maximal angular velocity.</add> <add name="Penetration Depth" type="float" default="0.15"> The maximum allowed penetration for this object. This is a hint to the engine to see how much CPU the engine should invest to keep this object from penetrating. -- GitLab