height
The height of the rectangle, measured from the Y position.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public float height { readonly get; set; }
Remarks
Setting this value will also change Rect.yMax.
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { Rect rect = new Rect(0, 0, 10, 10); print(rect.height); rect.height = 20; }}