Version: Unity 6 Preview (6000.0)
LanguageEnglish
  • C#

CharacterController.height

Switch to Manual
public float height;

Description

The height of the character's capsule.

using UnityEngine;

public class Example : MonoBehaviour { // Set the controller height to 2.0 CharacterController controller;

void Start() { controller = GetComponent<CharacterController>(); controller.height = 2.0f; } }