包含此页的版本:
不含此页的版本:
该角色胶囊体的高度。
using UnityEngine;public class Example : MonoBehaviour { // Set the controller height to 2.0 CharacterController controller; void Start() { controller = GetComponent<CharacterController>(); controller.height = 2.0f; } }