Beispiel #1
0
 void OnMouseUp()
 {
     if (mainMenu)
     {
         manager.Show(this);
     }
 }
Beispiel #2
0
 void OnMouseUp()
 {
     if (manager.getShown())
     {
         manager.Hide(this);
         manager.setShown(false);
     }
     else
     {
         manager.Show(this);
         manager.setShown(true);
     }
 }
Beispiel #3
0
 void OnMouseUp()
 {
     manager.Show(this);
 }