Spaces:
Build error
Build error
import Box from './Box.js'; | |
import ObjectFactory from '../ObjectFactory.js'; | |
import SetValue from '../../../plugins/utils/object/SetValue.js'; | |
ObjectFactory.register('box', function (config) { | |
var gameObject = new Box(this.scene, config); | |
this.scene.add.existing(gameObject); | |
return gameObject; | |
}); | |
SetValue(window, 'RexPlugins.Spinner.Box', Box); | |
export default Box; |