Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var tmpTime = 50;
- function Update()
- {
- if(tmpTime > 0)
- {
- tmpTime = tmpTime - Time.DeltaTime;
- }
- }
- function OnTriggerEnter(other: Collider)
- {
- if (other.tag == "fruit")
- {
- if(tmpTIme <= 0)
- {
- audio.PlayOneShot(piw);
- tmpTime = 50
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment