diff options
Diffstat (limited to 'src/dynamics/rigid_body_components.rs')
| -rw-r--r-- | src/dynamics/rigid_body_components.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dynamics/rigid_body_components.rs b/src/dynamics/rigid_body_components.rs index 82ecacf..a135a1c 100644 --- a/src/dynamics/rigid_body_components.rs +++ b/src/dynamics/rigid_body_components.rs @@ -107,6 +107,8 @@ bitflags::bitflags! { const COLLIDERS = 1 << 3; /// Flag indicating that the `RigidBodyType` component of this rigid-body has been modified. const TYPE = 1 << 4; + /// Flag indicating that the `RigidBodyDominance` component of this rigid-body has been modified. + const DOMINANCE = 1 << 5; } } |
