Quantcast
Channel: Questions in topic: "footsteps"
Viewing all articles
Browse latest Browse all 164

Random footstep sounds not looping

$
0
0
Hi there, I'm having an issue where a script I have is supposed to loop randomly between four different footsteps sounds when forward is pressed. The problem is that when 'W' is pressed, it plays one of the four clips at random, but won't loop until I release 'W' and press it again. Any help is appreciated! #pragma strict var Steps : AudioClip[]; function Update() { if (Input.GetKeyDown(KeyCode.W)) { audio.clip = Steps[Random.Range(0,Steps.length)]; audio.loop=true; if (!audio.isPlaying) { audio.Play(); } } else (!Input.GetKeyDown(KeyCode.W)) { audio.loop=false; } }

Viewing all articles
Browse latest Browse all 164

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>