Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


zero

Shorthand for writing new Rect(0,0,0,0).
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public static Rect zero { get; }

Remarks

Additional Resources: Rect.

Examples

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