Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

Rect.height

マニュアルに切り替える
public float height;

説明

矩形の高さ。位置 Y から計測。

この値を設定すると、yMax も変更されます。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Rect rect = new Rect(0, 0, 10, 10); void Example() { print(rect.height); rect.height = 20; } }