public float slopeLimit ;

Descripción

Los character controllers limitan la pendiente en grados.

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