Version: 2022.1
言語: 日本語
public float height ;

説明

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

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

using UnityEngine;

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