Version: 2020.3
언어: 한국어
public static Rect zero ;

설명

Shorthand for writing new Rect(0,0,0,0).

See Also: Rect.

using UnityEngine;

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