Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


height

The height of the character's capsule.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.PhysicsModule
public float height { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ // Set the controller height to 2.0 CharacterController controller; void Start() { controller = GetComponent<CharacterController>(); controller.height = 2.0f; }}