Enum Physics2DServerSingleton.CCDMode
enum CCDMode
: int { ... }
Enum members
Name | Description |
---|---|
ccdModeCastRay
|
Enables continuous collision detection by raycasting. It is faster than shapecasting, but less precise. |
ccdModeCastShape
|
Enables continuous collision detection by shapecasting. It is the slowest CCD method, and the most precise. |
ccdModeDisabled
|
Disables continuous collision detection. This is the fastest way to detect body collisions, but can miss small, fast-moving objects. |