Skip to content

Commit c6dc93d

Browse files
committed
Added missing plugins jsdoc hook
1 parent 49a27bd commit c6dc93d

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

src/scene/Scene.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var Systems = require('./Systems');
99

1010
/**
1111
* @classdesc
12-
* A base Phaser.Scene class which you could extend for your own use.
12+
* A base Phaser.Scene class which can be extended for your own use.
1313
*
1414
* @class Scene
1515
* @memberof Phaser
@@ -265,6 +265,18 @@ var Scene = new Class({
265265
* @since 3.16.2
266266
*/
267267
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;
268280
},
269281

270282
/**

0 commit comments

Comments
 (0)