Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


slopeLimit

The character controllers slope limit in degrees.
Read time 1 minuteLast updated 10 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.PhysicsModule
public float slopeLimit { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ // Set the controller slope limit to 45 degrees CharacterController controller; void Start() { controller = GetComponent<CharacterController>(); controller.slopeLimit = 45.0f; }}