Version: 5.4
public float slopeLimit ;

説明

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public CharacterController controller; void Example() { controller = GetComponent<CharacterController>(); controller.slopeLimit = 45.0F; } }