UNPKG

phaser4-rex-plugins

Version:
16 lines (14 loc) 375 B
var SetSkipSoundEffect = function (value) { if (value === undefined) { value = true; } this.skipSoundEffect = value; if (value) { var soundManager = this._soundManager; if (soundManager) { soundManager.fadeOutAllSoundEffects(100, true); } } return this; } export default SetSkipSoundEffect;