Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


sleepVelocity

The default linear velocity, below which objects start going to sleep (default 0.15). Must be positive.
Read time 1 minuteLast updated 2 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.PhysicsModule
Warning
Removed. The sleepVelocity is no longer supported. Use sleepThreshold. Note that sleepThreshold is energy but not velocity.
public static float sleepVelocity { get; set; }

Remarks

See the Physics Overview in the manual for more information about Rigidbody sleeping. This value can be overridden per rigidbody using Rigidbody.sleepVelocity.
This value is usually changed in
Edit->Project Settings->Physics
inspector instead of from scripts.

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Start() { Physics.sleepVelocity = 0.1f; }}