Versions with this page:
Versions without this page:
Радиус капсулы персонажа.
using UnityEngine;public class Example : MonoBehaviour { // Set the controller radius to 0.3f CharacterController controller; void Start() { controller = GetComponent<CharacterController>(); controller.radius = 0.3f; } }