center
The center of the character's capsule relative to the transform's position.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.PhysicsModule
public Vector3 center { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ CharacterController controller; private void Start() { controller = GetComponent<CharacterController>(); controller.center = new Vector3(0, 1, 0); }}