Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

Rect.Rect

Switch to Manual
public Rect(left: float, top: float, width: float, height: float)

Parameters

Description

Creates a new rectangle.

	var rect = Rect (0, 0, 10, 10);

public Rect(position: Vector2, size: Vector2)

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.