Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

EditorGUILayout.PropertyField

Предложить изменения

Успех!

Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.

Закрыть

Ошибка внесения изменений

По определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.

Закрыть

Отменить

Руководство
public static function PropertyField(property: SerializedProperty, params options: GUILayoutOption[]): bool;
public static bool PropertyField(SerializedProperty property, params GUILayoutOption[] options);
public static function PropertyField(property: SerializedProperty, label: GUIContent, params options: GUILayoutOption[]): bool;
public static bool PropertyField(SerializedProperty property, GUIContent label, params GUILayoutOption[] options);
public static function PropertyField(property: SerializedProperty, includeChildren: bool, params options: GUILayoutOption[]): bool;
public static bool PropertyField(SerializedProperty property, bool includeChildren, params GUILayoutOption[] options);
public static function PropertyField(property: SerializedProperty, label: GUIContent, includeChildren: bool, params options: GUILayoutOption[]): bool;
public static bool PropertyField(SerializedProperty property, GUIContent label, bool includeChildren, params GUILayoutOption[] options);

Параметры

property The SerializedProperty to make a field for.
label Optional label to use. If not specified the label of the property itself is used. Use GUIContent.none to not display a label at all.
includeChildren If true the property including children is drawn; otherwise only the control itself (such as only a foldout but nothing below it).
options @param options Настраиваемый список настроек слоя, который определяет дополнительные свойства слоя. Любые значения, переданные здесь, будут переопределять настройки, определенный стилем. See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Возврат значений

bool True if the property has children and is expanded and includeChildren was set to false; otherwise false.

Описание

Make a field for SerializedProperty.