mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 09:03:29 +00:00
60 lines
1.3 KiB
JavaScript
60 lines
1.3 KiB
JavaScript
var Class = require('../../utils/Class');
|
|
var PluginManager = require('../../plugins/PluginManager');
|
|
|
|
var GameObjectCreator = new Class({
|
|
|
|
initialize:
|
|
|
|
function GameObjectCreator (scene)
|
|
{
|
|
// The Scene that owns this plugin
|
|
this.scene = scene;
|
|
|
|
this.systems = scene.sys;
|
|
|
|
this.mapping = 'make';
|
|
|
|
this.systems.events.on('boot', this.boot, this);
|
|
|
|
this.displayList;
|
|
this.updateList;
|
|
},
|
|
|
|
boot: function ()
|
|
{
|
|
this.systems.inject(this);
|
|
|
|
this.displayList = this.systems.displayList;
|
|
this.updateList = this.systems.updateList;
|
|
|
|
this.systems.events.on('shutdown', this.shutdown, this);
|
|
this.systems.events.on('destroy', this.destroy, this);
|
|
},
|
|
|
|
shutdown: function ()
|
|
{
|
|
|
|
},
|
|
|
|
destroy: function ()
|
|
{
|
|
this.scene = null;
|
|
this.displayList = null;
|
|
this.updateList = null;
|
|
}
|
|
|
|
});
|
|
|
|
// Static method called directly by the Game Object creator functions
|
|
|
|
GameObjectCreator.register = function (type, factoryFunction)
|
|
{
|
|
if (!GameObjectCreator.prototype.hasOwnProperty(type))
|
|
{
|
|
GameObjectCreator.prototype[type] = factoryFunction;
|
|
}
|
|
};
|
|
|
|
PluginManager.register('make', GameObjectCreator);
|
|
|
|
module.exports = GameObjectCreator;
|