UNPKG

phaser4-rex-plugins

Version:
18 lines (14 loc) 484 B
import ParticlesAlongBounds from './particlesalongbounds.js' class ParticlesAlongBoundsPlugin extends Phaser.Plugins.BasePlugin { constructor(pluginManager) { super(pluginManager); } start() { var eventEmitter = this.game.events; eventEmitter.on('destroy', this.destroy, this); } startEffect(gamObject, config) { return ParticlesAlongBounds(gamObject, config); } } export default ParticlesAlongBoundsPlugin;