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

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

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

EditorGUI.ToggleLeft

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

Успех!

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

Закрыть

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

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

Закрыть

Отменить

Руководство
public static function ToggleLeft(position: Rect, label: string, value: bool, labelStyle: GUIStyle = EditorStyles.label): bool;
public static bool ToggleLeft(Rect position, string label, bool value, GUIStyle labelStyle = EditorStyles.label);
public static function ToggleLeft(position: Rect, label: string, value: bool, labelStyle: GUIStyle = EditorStyles.label): bool;
public static bool ToggleLeft(Rect position, string label, bool value, GUIStyle labelStyle = EditorStyles.label);
public static function ToggleLeft(position: Rect, label: GUIContent, value: bool, labelStyle: GUIStyle = EditorStyles.label): bool;
public static bool ToggleLeft(Rect position, GUIContent label, bool value, GUIStyle labelStyle = EditorStyles.label);
public static function ToggleLeft(position: Rect, label: GUIContent, value: bool, labelStyle: GUIStyle = EditorStyles.label): bool;
public static bool ToggleLeft(Rect position, GUIContent label, bool value, GUIStyle labelStyle = EditorStyles.label);

Параметры

position @param position Прямоугольник, в котором будет находиться метка.
label Label to display next to the toggle.
value @param value Значение для редактирования.
labelStyle @param position Прямоугольник, в котором будет находиться метка.

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

bool Значение, введенное пользователем.

Описание

Make a toggle field where the toggle is to the left and the label immediately to the right of it.

EditorGUI.ToggleLeft is similar to GUI.Toggle but respects the EditorGUI.showMixedValue property and handles keyboard focus consistent with other Editor controls.