agentVerse / ui /src /phaser3-rex-plugins /plugins /cursoratbound-plugin.js
AgentVerse's picture
first commit
670a607
raw
history blame contribute delete
423 Bytes
import CursorAtBound from './cursoratbound.js';
class CursorAtBoundPlugin extends Phaser.Plugins.BasePlugin {
constructor(pluginManager) {
super(pluginManager);
}
start() {
var eventEmitter = this.game.events;
eventEmitter.on('destroy', this.destroy, this);
}
add(scene, config) {
return new CursorAtBound(scene, config);
}
}
export default CursorAtBoundPlugin;