CharacterController.slopeLimit

Switch to Manual
public float slopeLimit;

Description

The character controllers slope limit in degrees.

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; } }

Did you find this page useful? Please give it a rating: