Enum SimulationMode
Simulation mode of the default physics world. Used to control when the physics engine will be stepped.
Namespace: Motphys.Rigidbody
Assembly: solution.dll
Syntax
public enum SimulationMode
Fields
Name | Description |
---|---|
FixedUpdate | The physics engine will be stepped in FixedUpdate. Choose this mode if you want a more deterministic simulation result. |
Script | The physics engine will not be stepped automatically. You need to call PhysicsManager.Simulate() manually. |
Update | The physics engine will be stepped in Update. |