このページを含むバージョン:
このページを含まないバージョン:
キャラクターのカプセルの高さ
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public CharacterController controller; void Example() { controller = GetComponent<CharacterController>(); controller.height = 2.0F; } }