Version: 2023.1
언어: 한국어
public static RectInt zero ;

설명

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

See Also: RectInt.

using UnityEngine;

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