Enum CollisionObject3D.DisableModeEnum
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum CollisionObject3D.DisableModeEnum : long
Fields
KeepActive = 2
When ProcessMode is set to Disabled, do not affect the physics simulation.
MakeStatic = 1
When ProcessMode is set to Disabled, make the body static. Doesn't affect Area3D. PhysicsBody3D can't be affected by forces or other bodies while static.
Automatically set PhysicsBody3D back to its original mode when the Node is processed again.
Remove = 0
When ProcessMode is set to Disabled, remove from the physics simulation to stop all physics interactions with this CollisionObject3D.
Automatically re-added to the physics simulation when the Node is processed again.