My Particle Emit effects when object was moved
so I wanna Play Sound (e.walk sound) when Particle is emitted
How Can I Do that?
Desired Code
ParticleSystem particle;
private void Awake()
{
particle.onEmit += () => SoundManager.Instance.PlaySFX();
}