UNPKG

phaser4-rex-plugins

Version:
16 lines (13 loc) 332 B
class ObjectFactory { constructor(scene) { this.scene = scene; scene.events.once('destroy', this.destroy, this); } destroy() { this.scene = null; } static register(type, callback) { ObjectFactory.prototype[type] = callback; } }; export default ObjectFactory;