TexeL

Untitled

Apr 22nd, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. var tmpTime = 50;
  2.  
  3. function Update()
  4. {
  5.     if(tmpTime > 0)
  6.     {
  7.         tmpTime = tmpTime - Time.DeltaTime;
  8.     }
  9. }
  10.  
  11. function OnTriggerEnter(other: Collider)
  12. {
  13.     if (other.tag == "fruit")
  14.     {
  15.          if(tmpTIme <= 0)
  16.         {
  17.             audio.PlayOneShot(piw);
  18.             tmpTime = 50
  19.         }  
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment