GuiEnabledStateScope Constructor |
Namespace: KSPDev.GUIUtils
public GuiEnabledStateScope( bool newState )
void OnGUI() { GUI.enabled = true; using (new GuiEnabledStateScope(false)) { // All the controls in this block will become disabled. GUILayout.Button("Disabled button 1"); GUILayout.Button("Disabled button 2"); } // From here the enabled state is True again. GUILayout.Button("Enabled button 3"); }