radius
The radius of the character's capsule.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.PhysicsModule
public float radius { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ // Set the controller radius to 0.3f CharacterController controller; void Start() { controller = GetComponent<CharacterController>(); controller.radius = 0.3f; }}