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

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

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

EditorGUI.DelayedTextField

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

Успех!

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

Закрыть

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

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

Закрыть

Отменить

Руководство
public static function DelayedTextField(position: Rect, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string DelayedTextField(Rect position, string text, GUIStyle style = EditorStyles.textField);
public static function DelayedTextField(position: Rect, label: string, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string DelayedTextField(Rect position, string label, string text, GUIStyle style = EditorStyles.textField);
public static function DelayedTextField(position: Rect, label: GUIContent, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string DelayedTextField(Rect position, GUIContent label, string text, GUIStyle style = EditorStyles.textField);

Параметры

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

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

string 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 text field.

Описание

@param label Необязательный текст, отображаемый над полем.

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


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

Параметры

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

Описание

@param label Необязательный текст, отображаемый над полем.

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