We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49a27bd commit c6dc93dCopy full SHA for c6dc93d
1 file changed
src/scene/Scene.js
@@ -9,7 +9,7 @@ var Systems = require('./Systems');
9
10
/**
11
* @classdesc
12
- * A base Phaser.Scene class which you could extend for your own use.
+ * A base Phaser.Scene class which can be extended for your own use.
13
*
14
* @class Scene
15
* @memberof Phaser
@@ -265,6 +265,18 @@ var Scene = new Class({
265
* @since 3.16.2
266
*/
267
this.scale;
268
+
269
+ /**
270
+ * A reference to the Plugin Manager.
271
+ *
272
+ * The Plugin Manager is a global system that allows plugins to register themselves with it, and can then install
273
+ * those plugins into Scenes as required.
274
275
+ * @name Phaser.Scene#plugins
276
+ * @type {Phaser.Plugins.PluginManager}
277
+ * @since 3.0.0
278
+ */
279
+ this.plugins;
280
},
281
282
0 commit comments