UNPKG

phaser4-rex-plugins

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