Click or drag to resize

GuiEnabledStateScope Constructor

Stores the old state and sets a new one.

Namespace:  KSPDev.GUIUtils
Assembly:  KSPDev_Utils.1.0 (in KSPDev_Utils.1.0.dll) Version: 1.0 for KSP v1.6+
Syntax
C#
public GuiEnabledStateScope(
	bool newState
)
Request Example View Source

Parameters

newState
Type: SystemBoolean
The new state to set.
Examples
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");
}
See Also