# zero

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

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.0/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static RectInt zero { get; }
```

### Remarks

Additional Resources:  [RectInt](/engine/6000.0/script-reference/unityengine/rectint.md).

### Examples

```csharp
using UnityEngine;

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