Version: 2020.2
public static Rect zero ;

描述

用于编写 new Rect(0,0,0,0) 的简便方法。

另请参阅:Rect

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Rect initialBox = Rect.zero; } }