UNPKG

phaser4-rex-plugins

Version:
13 lines (10 loc) 465 B
import SimpleLabel from './SimpleLabel.js'; import ObjectFactory from '../ObjectFactory.js'; import SetValue from '../../../plugins/utils/object/SetValue.js'; ObjectFactory.register('simpleLabel', function (config, creators) { var gameObject = new SimpleLabel(this.scene, config, creators); this.scene.add.existing(gameObject); return gameObject; }); SetValue(window, 'RexPlugins.UI.SimpleLabel', SimpleLabel); export default SimpleLabel;