Dynamic
Sets the Rigidbody2D to have dynamic behaviour.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Field
- Namespace: UnityEngine
- Assembly: UnityEngine.Physics2DModule
Dynamic = 0
Remarks
Dynamic behaviour causes the Rigidbody2D to react to gravity and applied forces including contacts with other dynamic or RigidbodyType2D.Kinematic Rigidbody2D.
This type of Rigidbody2D should be moved using forces and never repositioned explicitly.
A dynamic Rigidbody2D will collide with all other Rigidbody2D body types.
When an attached Collider2D is set to trigger, it will always produce a trigger for any Collider2D attached to all other Rigidbody2D body types.
Additional Resources: Rigidbody2D.bodyType.