Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

EditorGUI.RectField

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

Submission failed

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

Close

Cancel

public static method RectField(position: Rect, value: Rect): Rect;
public static Rect RectField(Rect position, Rect value);
public static method RectField(position: Rect, label: string, value: Rect): Rect;
public static Rect RectField(Rect position, string label, Rect value);
public static method RectField(position: Rect, label: GUIContent, value: Rect): Rect;
public static Rect RectField(Rect position, GUIContent label, Rect value);

Parameters

positionRectangle on the screen to use for the field.
labelOptional label to display above the field.
valueThe value to edit.

Returns

Rect The value entered by the user.

Description

Make an X, Y, W & H field for entering a Rect.


Rect field in an Editor Window.

// Find all the cameras in the scene and shows all their viewports togheter

class EditorGUIRectField extends EditorWindow {

var cameras : Camera[];

@MenuItem("Examples/Editor GUI RectField usage") static function Init() { var window = GetWindow(EditorGUIRectField); window.position = Rect(0,0,150,120); window.Show(); }

function OnGUI() { if(GUI.Button(Rect(3,3,position.width-6,20),"Update list")) cameras = FindObjectsOfType(Camera);

if(cameras) for(var i = 0; i < cameras.Length; i++) { cameras[i].rect = EditorGUI.RectField( Rect(3,25+45*i,position.width - 6, 25), cameras[i].name, cameras[i].rect); } } }

Description

Make an X, Y, W & H for Rect using SerializedProperty (not public).

Did you find this page useful? Please give it a rating: