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