Version: 2019.4
public float slopeLimit ;

説明

キャラクターコントローラーの度単位での勾配制限

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