Guest User

Untitled

a guest
Apr 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var x : int = 0;
  2.  
  3. var y : int = 0;
  4.  
  5.  
  6.  
  7. function OnGUI ()
  8.  
  9. {
  10.  
  11. GUILayout.BeginArea(Rect(x,y,200,200));
  12.  
  13. GUILayout.Label("Du hast gewonnen!");
  14.  
  15. if(GUILayout.Button("Weiter"))
  16.  
  17. {
  18.  
  19. Application.Quit();
  20.  
  21. }
  22.  
  23. GUILayout.EndArea();
  24.  
  25. }
Add Comment
Please, Sign In to add comment