AgentVerse's picture
first commit
670a607
raw
history blame contribute delete
389 Bytes
import Oval from './Oval.js';
import ObjectFactory from '../ObjectFactory.js';
import SetValue from '../../../plugins/utils/object/SetValue.js';
ObjectFactory.register('oval', function (config) {
var gameObject = new Oval(this.scene, config);
this.scene.add.existing(gameObject);
return gameObject;
});
SetValue(window, 'RexPlugins.Spinner.Oval', Oval);
export default Oval;