Different surface footsteps

Just to clear my mind. Which is the best way to approach footsteps on different terrains for a third person character using animation events and FMOD? :slight_smile: Thanks and have a great day!

PS: the question relates to scripting of course :slight_smile:

Hi Tuan,

There’s not really a “best way” for approaching this, just whatever works for you and/or your team.

Here are three methods for you to think about, but you can use others too.

  1. Have all surface footsteps playing on the timeline at the same time in an event. Use game parameters and automation to mute any unwanted sounds. This is great for blending multiple footsteps sounds (eg. wet sand, gravel on metal, etc.). You can see an example in our Viking Village tutorial (https://youtu.be/DI72MHPfh0k).
  2. Use a game parameter to determine what surface your character is on and have mutli sound modules on that game parameter. When the event is played with those parameter settings, only that surface’s footstep will play.
  3. Use a game parameter in conjunction with transition markers and trigger conditions to determine which surface’s footsteps are being played. You can see an example of this in our example project (Character > Footsteps > Footsteps) which is installed with FMOD Studio.

In terms of scripting, the only command you will really need is the EventInstance::setParameterValue.

https://www.fmod.org/documentation/#content/generated/FMOD_Studio_EventInstance_SetParameterValue.html

https://www.fmod.org/documentation#content/generated/engine_new_unity/scripting.html

Thanks,
Richard

Thanks! that was helpful