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