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 height of the capsule meased in the object's local space.
The capsule's height will be scaled by the transform's scale. Note that the height is the actual height including the half-spheres at each end.
collider.height = 5;
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { collider.height = 5; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: collider.height = 5