mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 12:33:38 +00:00
20 lines
494 B
JavaScript
20 lines
494 B
JavaScript
|
// These are the core plugins that are installed into every Scene.Systems, no matter what.
|
||
|
// They are optionally exposed in the Scene as well (see the InjectionMap for details)
|
||
|
|
||
|
// They are created in the order in which they appear in the array, EventEmitter is always first.
|
||
|
|
||
|
var CoreScenePlugins = [
|
||
|
|
||
|
'EventEmitter',
|
||
|
|
||
|
'CameraManager',
|
||
|
'GameObjectCreator',
|
||
|
'GameObjectFactory',
|
||
|
'ScenePlugin',
|
||
|
'DisplayList',
|
||
|
'UpdateList'
|
||
|
|
||
|
];
|
||
|
|
||
|
module.exports = CoreScenePlugins;
|