Version: 2017.2
public float height ;

Description

Высота капсулы персонажа.

using UnityEngine;
using System.Collections;

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