playMaker

Author Topic: 3rd person footstep sounds  (Read 2913 times)

ivam

  • Playmaker Newbie
  • *
  • Posts: 34
3rd person footstep sounds
« on: September 09, 2014, 12:33:35 PM »
heya guys, iam trying to set up footstep sounds for a 3rd person character, any idea how to approach that ? i also dont mind spending money for an asset if anyone knows a good one ?

Sly

  • Full Member
  • ***
  • Posts: 123
Re: 3rd person footstep sounds
« Reply #1 on: September 09, 2014, 01:54:32 PM »
You can probably set your sound directly in the animation using the Unity Animator, depending how your animation are working.

TheBadFeeling

  • Junior Playmaker
  • **
  • Posts: 66
Re: 3rd person footstep sounds
« Reply #2 on: September 09, 2014, 02:35:55 PM »
You can add event markers directly inside your animation and have those fire a "play footstep sound" event. Place the event marker right before your character's foot touches the ground. I have that in a sprite-animation, and it works brilliantly.

Then you can specify elsewhere which kind of ground the character is on, so that you can play different sounds for fx grass and metal.  :D
The Force is with you, young Playmaker – but you are not a C# senpai yet.

ivam

  • Playmaker Newbie
  • *
  • Posts: 34
Re: 3rd person footstep sounds
« Reply #3 on: September 09, 2014, 06:02:27 PM »
brilliant, that the pointer i needed, ill figure out how to do that