Select your preferred scripting language. All code snippets will be displayed in this language.
class in UnityEngine
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseGlobal physics properties and helper methods.
AllLayers | Layer mask constant to select all layers. |
bounceThreshold | Two colliding objects with a relative velocity below this will not bounce (default 2). Must be positive. |
defaultContactOffset | The default contact offset of the newly created colliders. |
DefaultRaycastLayers | Layer mask constant to select default raycast layers. |
gravity | The gravity applied to all rigid bodies in the scene. |
IgnoreRaycastLayer | Layer mask constant to select ignore raycast layer. |
queriesHitTriggers | Specifies whether queries (raycasts, spherecasts, overlap tests, etc.) hit Triggers by default. |
sleepThreshold | The mass-normalized energy threshold, below which objects start going to sleep. |
solverIterationCount | The default solver iteration count permitted for any rigid bodies (default 7). Must be positive. |
CapsuleCast | Casts a capsule against all colliders in the scene and returns detailed information on what was hit. |
CapsuleCastAll | Like Physics.CapsuleCast, but this function will return all hits the capsule sweep intersects. |
CheckCapsule | Checks if any colliders overlap a capsule-shaped volume in world space. |
CheckSphere | Returns true if there are any colliders overlapping the sphere defined by position and radius in world coordinates. |
GetIgnoreLayerCollision | Are collisions between layer1 and layer2 being ignored? |
IgnoreCollision | Makes the collision detection system ignore all collisions between collider1 and collider2. |
IgnoreLayerCollision | Makes the collision detection system ignore all collisions between any collider in layer1 and any collider in layer2.Note that IgnoreLayerCollision will reset the trigger state of affected colliders, so you might receive OnTriggerExit and OnTriggerEnter messages in response to calling this. |
Linecast | Returns true if there is any collider intersecting the line between start and end. |
OverlapSphere | Returns an array with all colliders touching or inside the sphere. |
Raycast | Casts a ray against all colliders in the scene. |
RaycastAll | Casts a ray through the scene and returns all hits. Note that order is not guaranteed. |
SphereCast | Casts a sphere along a ray and returns detailed information on what was hit. |
SphereCastAll | Like Physics.SphereCast, but this function will return all hits the sphere sweep intersects. |