Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. {
  2. function OnMouseUp () {
  3. //This should be on to load into Maze 1
  4. if (IsEnter==true) {
  5. //this loads you into Maze 1
  6. Application.LoadLevel(3);
  7. }
  8. else {
  9. //This will quit the game
  10. Application.Quit();
  11. }
  12. }
  13.  
  14. function Update () {
  15. //quits game is ESC is pressed
  16. if (Input.GetKey(KeyCode.Escape)) {Application.Quit();
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement