Legacy Documentation: Version 5.2
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Rect.Rect

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public Rect(x: float, y: float, width: float, height: float)
public Rect(float x, float y, float width, float height);

Parameters

Description

Creates a new rectangle.

var rect = Rect (0, 0, 10, 10);
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Rect rect = new Rect(0, 0, 10, 10); }

public Rect(position: Vector2, size: Vector2)
public Rect(Vector2 position, Vector2 size);

Parameters

position The position of the top-left corner.
size The width and height.

Description

Creates a rectangle given a size and position.

This form of the constructor is convenient when you are already working with Vector2 values.