/// <summary> /// Starts playing the given sound effect. The method /// returns as soon as the sound has started playing. /// </summary> /// <param name="effectName">name of the file in Sounds/SoundEffects to play</param> public static void PlayGameSoundEffect(string effectName) { manager.PlaySoundEffectNoWait(effectName); }