To apply global settings for 3D physics, use the Physics settings (main menu: Edit > Project Settings, then select the Physics category).
Note: To manage global settings for 2D physics, use the Physics 2D settings instead.
The Physics settings define limits on the accuracy of the 3D physical simulation. In most cases, a more accurate simulation requires more processing overhead, so these settings offer a way to trade off accuracy against performance.
The Physics panel contains settings to define which Physics SDKs you want to use in your project.
Setting | Description |
---|---|
GameObjectThe fundamental object in Unity scenes, which can represent characters, props, scenery, cameras, waypoints, and more. A GameObject’s functionality is defined by the Components attached to it. More info See in Glossary SDK |
Define the SDK you want to use to manage physics simulation on GameObjects in your project. The default setting is PhysX. Set to None to disable physics simulation for GameObjects in your project. |
The Physics settings also contains a panel called Settings.
The Settings panel contain settings for all Physics SDKs. The following tabs are available:
The Shared tab contains global settings that apply to all physics SDKs.
Setting | Description |
---|---|
Gravity | Use the x, y and z axes to set the amount of gravity applied to all Rigidbody components. For realistic gravity settings, apply a negative number to the y axis. Gravity is defined in world units per seconds squared. Note: If you increase the gravity, you might need to also increase the Default Solver Iterations value to maintain stable contacts. |
Layer CollisionA collision occurs when the physics engine detects that the colliders of two GameObjects make contact or overlap, when at least one has a Rigidbody component and is in motion. More info See in Glossary Matrix |
Define how the layer-based collision detection system behaves. To select which layers on the Collision Matrix interact with the other layers, check their respective checkboxes. |
The GameObject tab contains global physics settings that apply to all GameObjects in your project.
Setting | Description | |
---|---|---|
Default Material | Set a reference to the default Physics MaterialA physics asset for adjusting the friction and bouncing effects of colliding objects. More info See in Glossary to use if none has been assigned to an individual ColliderAn invisible shape that is used to handle physical collisions for an object. A collider doesn’t need to be exactly the same shape as the object’s mesh - a rough approximation is often more efficient and indistinguishable in gameplay. More info See in Glossary. |
|
Bounce Threshold | Set a velocity value. If two colliding objects have a relative velocity below this value, they do not bounce off each other. This value also reduces jitter, so it is not recommended to set it to a very low value. | |
Default Max Depenetration Velocity | Define the default value for the maximum depenetration velocity (the velocity that the solver can set to a body while trying to pull it out of overlap with the other bodies). | |
Sleep Threshold | Set a global energy threshold, below which a non-kinematic RigidbodyA component that allows a GameObject to be affected by simulated gravity and other forces. More info See in Glossary (that is, one that is not controlled by the physics system) may go to sleep. When a Rigidbody is sleeping, it is not updated every frame, making it less resource-intensive. If a Rigidbody’s kinetic energy divided by its mass is below this threshold, it is a candidate for sleeping. |
|
Default Contact Offset | Set the distance the collision detectionAn automatic process performed by Unity which determines whether a moving GameObject with a Rigidbody and collider component has come into contact with any other colliders. More info See in Glossary system uses to generate collision contacts. The value must be positive, and if set too close to zero, it can cause jitter. This is set to 0.01 by default. Colliders only generate collision contacts if their distance is less than the sum of their contact offset values. |
|
Default Solver Iterations | Define how many solver processes Unity runs on every physics frame. Solvers are small physics engine tasks which determine a number of physics interactions, such as the movements of joints or managing contact between overlapping Rigidbody components. This affects the quality of the solver output, and it is advisable to change the property in case non-default Time.fixedDeltaTime is used, or the configuration is extra demanding. Typically, it is used to reduce the jitter resulting from joints or contacts. |
|
Default Solver Velocity Iterations | Set how many velocity processes a solver performs in each physics frame. The more processes the solver performs, the higher the accuracy of the resulting exit velocity after a Rigidbody bounce. If you experience problems with jointed Rigidbody components or Ragdolls moving too much after collisions, try increasing this value. | |
Queries Hit Backfaces | Enable this option if you want physics queries (such as Physics.Raycast ) to detect hits with the backface triangles of MeshColliders. By default, this setting is disabled. |
|
Queries Hit Triggers | Enable this option if you want physics hit tests (such as Raycasts, SphereCasts and SphereTests) to return a hit when they intersect with a Collider marked as a Trigger. Individual raycasts can override this behavior. By default, this setting is enabled. | |
Enable Adaptive Force | Enable this option to enable the adaptive force. The adaptive force affects the way forces are transmitted through a pile or stack of objects, to give more realistic behaviour. By default, this setting is disabled. | |
Simulation Mode | Choose when Unity executes the physics simulation from the following options:
|
|
Auto Sync Transforms | Enable this option to automatically sync transform changes with the physics system whenever a Transform componentA Transform component determines the Position, Rotation, and Scale of each object in the scene. Every GameObject has a Transform. More info See in Glossary changes. By default, this setting is disabled. |
|
Reuse Collision Callbacks | Enable to re-use collision callbacks. The physics system only creates a single instance of the Collision type, and reuses it for each individual callback. This reduces waste for the garbage collector to handle, and improves performance. This property is enabled by default. | |
Invoke Collision Callbacks | Send MonoBehaviour collision messages for OnCollisionEnter , OnCollisionStay , and OnCollisionExit to the corresponding scriptsA piece of code that allows you to create your own Components, trigger game events, modify Component properties over time and respond to user input in any way you like. More infoSee in Glossary that implement the OnCollision methods. This property is enabled by default. |
|
Contact Pairs Mode | Choose the type of contact pair generation to use:
|
|
Broadphase Type | Choose which broad-phase algorithm to use in the physics simulation. For more information, refer to NVIDIA’s documentation on PhysX SDK and Rigid Body Collision. Choose from the following options:
|
|
Friction Type | Choose the friction algorithm used for simulation:
|
|
Enable Enhanced Determinism | Simulation in the sceneA Scene contains the environments and menus of your game. Think of each unique Scene file as a unique level. In each Scene, you place your environments, obstacles, and decorations, essentially designing and building your game in pieces. More info See in Glossary is consistent regardless the actors present, provided that the game inserts the actors in a deterministic order. This mode sacrifices some performance to ensure this additional determinism. |
|
Enable Unified HeightmapsA greyscale Texture that stores height data for an object. Each pixel stores the height difference perpendicular to the face that pixel represents. See in Glossary |
Enable this option to process TerrainThe landscape in your scene. A Terrain GameObject adds a large flat plane to your scene and you can use the Terrain’s Inspector window to create a detailed landscape. More info See in Glossary collisions in the same way as MeshThe main graphics primitive of Unity. Meshes make up a large part of your 3D worlds. Unity supports triangulated or Quadrangulated polygon meshes. Nurbs, Nurms, Subdiv surfaces must be converted to polygons. More info See in Glossary collisions. |
|
Improved Patch Friction | Optimize patch friction so that static and dynamic frictionA Physics Material property that defines the friction for a Rigidbody when it’s in motion. Lower values mean less friction, so a setting of zero represents slipping on ice. More info See in Glossary do not exceed analytical results. This property is deactivated by default. |
|
Solver Type | Choose the PhysX solver type to use for the simulation:
|
|
Default Max Angular Speed | Set the project-wide default maximum angular speed of all dynamic Rigidbody GameObjects, in radian. The default value is 50 . |
|
Scratch Buffer Chunk Count | The number of 16KB memory chunks to allocate to the physics system for temporary allocations. The default value is 4, which provides a 64KB buffer. | |
Fast Motion Threshold | The linear motion threshold that sweep-based CCD algorithms use to determine whether a fast-moving body moved this frame or not. Must be greater than zero. The default value is infinity, represented by the value 3.402823e+38 . |
The settings in the Cloth tab apply to Cloth physics only.
Setting | Description |
---|---|
Cloth Gravity | Set the gravity value on each axis for Cloth components. By default, X is set to 0 , Y is set to -9.81 , and Z is set to 0 . |
Enable Cloth Inter-Collision | Enable the ability for Cloth particles to collide with each other. Refer to Cloth: Self collision and intercollision for details. When you enable this setting, you can adjust the following additional settings:
|
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.