Version: 2017.3
public static bool ToggleLeft (Rect position, string label, bool value, GUIStyle labelStyle= EditorStyles.label);
public static bool ToggleLeft (Rect position, GUIContent label, bool value, GUIStyle labelStyle= EditorStyles.label);

Parámetros

position Rectangle on the screen to use for the toggle.
label Label to display next to the toggle.
value The value to edit.
labelStyle Optional GUIStyle to use for the label.

Valor de retorno

bool The value set by the user.

Descripción

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.