Version: 2020.1
언어: 한국어
public float slopeLimit ;

설명

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