Version: 2017.3
public float height ;

설명

The height of the character's capsule.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public CharacterController controller; void Example() { controller = GetComponent<CharacterController>(); controller.height = 2.0F; } }