phaser4-rex-plugins
Version:
27 lines (21 loc) • 538 B
JavaScript
import { TextEdit, Edit } from './textedit.js';
class TextEditPlugin extends Phaser.Plugins.BasePlugin {
constructor(pluginManager) {
super(pluginManager);
}
start() {
var eventEmitter = this.game.events;
eventEmitter.on('destroy', this.destroy, this);
}
add(gameObject, config) {
return new TextEdit(gameObject, config);
}
}
var methods = {
edit: Edit
};
Object.assign(
TextEditPlugin.prototype,
methods
);
export default TextEditPlugin;