Search Unity

disappear button

Discussion in 'Immediate Mode GUI (IMGUI)' started by Fekzh21, Dec 29, 2018.

  1. Fekzh21

    Fekzh21

    Joined:
    Dec 29, 2018
    Posts:
    18
    How could I make a button disappear by pressing it?
     
  2. Madgvox

    Madgvox

    Joined:
    Apr 13, 2014
    Posts:
    1,317
    Code (CSharp):
    1. if( showButton && GUILayout.Button( "Go Away" ) ) {
    2.   showButton = false;
    3.   Repaint();
    4. }