using UnityEngine;
using System.Collections;
public class Playersounds : MonoBehaviour {
public void PlayerFootsteps ()
{
FMOD_StudioSystem.instance.PlayOneShot("event:/PLayerSteps", transform.position);
}
}
1 Like