Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


RectIntField

Makes an X, Y, W, and H field for entering a RectInt.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Method
  • Namespace: UnityEditor
  • Assembly: UnityEditor

RectIntField(Rect, RectInt)

Makes an X, Y, W, and H field for entering a RectInt.
public static RectInt RectIntField(Rect position, RectInt value)

Parameters

position

Rectangle on the screen to use for the field.

value

The value to edit.

Returns

Type

Description

RectIntThe value entered by the user.

RectIntField(Rect, string, RectInt)

Makes an X, Y, W, and H field for entering a RectInt.
public static RectInt RectIntField(Rect position, string label, RectInt value)

Parameters

position

Rectangle on the screen to use for the field.

label

Optional label to display above the field.

value

The value to edit.

Returns

Type

Description

RectIntThe value entered by the user.

RectIntField(Rect, GUIContent, RectInt)

Makes an X, Y, W, and H field for entering a RectInt.
public static RectInt RectIntField(Rect position, GUIContent label, RectInt value)

Parameters

position

Rectangle on the screen to use for the field.

Optional label to display above the field.

value

The value to edit.

Returns

Type

Description

RectIntThe value entered by the user.