I am a beginner developer, and not that good at coding, modelling or anything like that, but i am creative. I am trying to make a game for my school project and it’s basically done, but i can’t find a script or anything for free to do add footstep sounds for my third person character!
Do you have the actual footsteps recorded? The simplest way to do this is to add an AudioSource to your character that will play the footsteps sounds whenever you move. Add an AudioSource to your character, then drop the footsteps recording into the AudioSource’s AudioClip field. Enable “Loop” and “Play on Wake”. Set Volume to 0. Then in your character’s script update method, check to see if the Vertical/Horizontal axes are not equal 0 (meaning there is movement). If there is movement turn the volume up.
Otherwise volume to 0. This really is one of the simplest ways I can think of doing this, but it is by no means the best!