Advertisement
kasru

Pause Menu

Jan 9th, 2013
9,643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //****** Donations are greatly appreciated.  ******
  2. //****** You can donate directly to Jesse through paypal at  https://www.paypal.me/JEtzler   ******
  3.  
  4. var paused : boolean = false;
  5.  
  6. function Update () {
  7.  
  8.     if(Input.GetKeyDown("p") && paused == false) {  
  9.         paused = true;  
  10.         Time.timeScale = 0;
  11.         }
  12.         else if(Input.GetKeyDown("p") && paused == true) {
  13.                 paused = false;
  14.                 Time.timeScale = 1;
  15.        }  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement