-
-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Description
ALL
does not include FIXED_FIXED
. Related to dimforge/rapier#407 (comment)
rapier.js/src.ts/geometry/collider.ts
Lines 83 to 98 in 50223ff
FIXED_FIXED = 0b0000_0000_0010_0000, | |
/** | |
* The default active collision types, enabling collisions between a dynamic body | |
* and another body of any type, but not enabling collisions between two non-dynamic bodies. | |
*/ | |
DEFAULT = DYNAMIC_KINEMATIC | DYNAMIC_DYNAMIC | DYNAMIC_FIXED, | |
/** | |
* Enable collisions between any kind of rigid-bodies (including between two non-dynamic bodies). | |
*/ | |
ALL = DYNAMIC_KINEMATIC | | |
DYNAMIC_DYNAMIC | | |
DYNAMIC_FIXED | | |
KINEMATIC_KINEMATIC | | |
KINEMATIC_FIXED | | |
KINEMATIC_KINEMATIC, | |
} |
Metadata
Metadata
Assignees
Labels
No labels