UNPKG

phaser4-rex-plugins

Version:
19 lines (17 loc) 382 B
export default { setNoiseEnable(enable) { if (enable === undefined) { enable = true; } this.noiseEnable = enable; return this; }, setNoiseStrength(value) { this.noiseStrength = value; return this; }, setNoiseSeed(value) { this.noiseSeed = value; return this; } }