UNPKG

@petkoneo/phaser3-rex-plugins

Version:
19 lines (14 loc) 425 B
import AddTintRGBProperties from './tintrgb.js'; class TintRGBPlugin extends Phaser.Plugins.BasePlugin { constructor(pluginManager) { super(pluginManager); } start() { var eventEmitter = this.game.events; eventEmitter.on('destroy', this.destroy, this); } add(gameObject, tintRGB) { return AddTintRGBProperties(gameObject, tintRGB) } } export default TintRGBPlugin;