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

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

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

EditorGUI.DelayedIntField

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

Успех!

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

Закрыть

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

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

Закрыть

Отменить

Руководство
public static function DelayedIntField(position: Rect, value: int, style: GUIStyle = EditorStyles.numberField): int;
public static int DelayedIntField(Rect position, int value, GUIStyle style = EditorStyles.numberField);
public static function DelayedIntField(position: Rect, label: string, value: int, style: GUIStyle = EditorStyles.numberField): int;
public static int DelayedIntField(Rect position, string label, int value, GUIStyle style = EditorStyles.numberField);
public static function DelayedIntField(position: Rect, label: GUIContent, value: int, style: GUIStyle = EditorStyles.numberField): int;
public static int DelayedIntField(Rect position, GUIContent label, int value, GUIStyle style = EditorStyles.numberField);

Параметры

position @param position Прямоугольник на экране, используемый для поля.
label @param label Необязательная метка для отображения перед полем.
value @param value Значение для редактирования.
style @param style Необязательный стиль GUIStyle.

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

int The value entered by the user. Note that the return value will not change until the user has pressed enter or focus is moved away from the int field.

Описание

Создает поле для ввода значений типа float.

Similar to EditorGUI.IntField but will not return the new value until the user has pressed enter or focus is moved away from the int field.


public static function DelayedIntField(position: Rect, property: SerializedProperty, label: GUIContent = null): void;
public static void DelayedIntField(Rect position, SerializedProperty property, GUIContent label = null);

Параметры

position @param position Прямоугольник на экране, используемый для поля.
property @param value Цвет для редактирования.
label @param label Необязательная метка для отображения перед полем.

Описание

The value entered by the user. Note that the return value will not change until the user has pressed enter or focus is moved away from the int field.

Similar to EditorGUI.IntField but will not return the new value until the user has pressed enter or focus is moved away from the int field.