包含此页的版本:
不含此页的版本:
这些角色控制器的坡度限制(单位为度)。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public CharacterController controller; void Example() { controller = GetComponent<CharacterController>(); controller.slopeLimit = 45.0F; } }