包含此页的版本:
不含此页的版本:
该角色胶囊体的高度。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public CharacterController controller; void Example() { controller = GetComponent<CharacterController>(); controller.height = 2.0F; } }