Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var isQuitButton = false;
  2.  
  3. function OnMouseEnter()
  4. {
  5.     renderer.material.color = Color.green;
  6. }
  7.  
  8. function OnMouseExit()
  9. {
  10.     renderer.material.color = Color.white;
  11. }
  12.  
  13. function On Mouse Up()
  14. {
  15.     if ( isQuitButton )
  16.     {
  17.     Application.Quit();
  18.     }
  19.     else
  20.     {
  21.     Application.LoadLevel(1);
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement