Select your preferred scripting language. All code snippets will be displayed in this language.
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.
CloseThe minimum contact penetration value in order to apply a penalty force (default 0.05). Must be positive.
This value is usually changed in Edit->Project Settings->Physics
inspector instead of from scripts.
Physics.minPenetrationForPenalty = 0.1;
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { Physics.minPenetrationForPenalty = 0.1F; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: Physics.minPenetrationForPenalty = 0.1F