Hello, thanks for all the helpful answers til now. I have new question today.
I want to use Wwise as an audio engine to drive my first game’s audio output and while I have integrated it properly, I do have some issue with it.
My game involves first person mechanism without any skeletal mesh attached.
So for footstep sound, I literally made my game to check player’s axis value and only trigger the sound when neither direction equals to 0.
Problem is, whenever I make my character stop - ending is irregular. Sometimes you’ll hear a glimpse of footstep before it’s cut.
Also, because jumping doesn’t kill an axis value, I forced footstep to be muted by adding “Get Output Bus Volume” to 0 when CharacterJump Boolean is set to true and turn back on when CharacterJump Boolean is set back to false.This method will sometime produce doubled sound effect upon landing. Doesn’t always happen which is another sign of unstable code.
Is there a proper way to do footsteps for Wwise and Unreal Engine for a Pawn that has no proper skeletal mesh assigned? Thanks.