'No overload for method' when attatching fmod event to animation event

using UnityEngine;
using System.Collections;

public class Playersounds : MonoBehaviour {

    public void PlayerFootsteps () 
    {
        FMOD_StudioSystem.instance.PlayOneShot("event:/PLayerSteps", transform.position);
    }
}
1 Like