File size: 681 Bytes
670a607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Factory from './gameobjects/shape/cover/Factory.js';
import Creator from './gameobjects/shape/cover/Creator.js';
import Cover from './gameobjects/shape/cover/Cover.js';
import SetValue from './utils/object/SetValue.js';

class CoverPlugin extends Phaser.Plugins.BasePlugin {

    constructor(pluginManager) {
        super(pluginManager);

        //  Register our new Game Object type
        pluginManager.registerGameObject('rexCover', Factory, Creator);
    }

    start() {
        var eventEmitter = this.game.events;
        eventEmitter.on('destroy', this.destroy, this);
    }
}

SetValue(window, 'RexPlugins.GameObjects.Cover', Cover);

export default CoverPlugin;