Version: 2020.3
public float height ;

描述

该角色胶囊体的高度。

using UnityEngine;

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

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