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

Parámetros

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

Valor de retorno

Rect The value entered by the user.

Descripción

Makes an X, Y, W, and H field for entering a Rect.


Rect field in an Editor Window.

using UnityEngine;
using UnityEditor;

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

class EditorGUIRectField : EditorWindow { Camera[] cameras;

[MenuItem("Examples/Editor GUI RectField usage")] static void Init() { var window = GetWindow<EditorGUIRectField>(); window.position = new Rect(0, 0, 150, 120); window.Show(); }

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

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

Descripción

Makes an X, Y, W, and H for Rect using SerializedProperty (not public).

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961