mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 07:01:20 +00:00
1, removed protected
for a few of members, they are used publicly somewhere, for example this.loader.textureManager.addAtlasJSONArray
in MultiAtlasFile.prototype.addCache.
2, doc improvement for typescript
This commit is contained in:
parent
b6c2934e65
commit
b7424fd287
1 changed files with 0 additions and 4 deletions
|
@ -65,7 +65,6 @@ var LoaderPlugin = new Class({
|
|||
*
|
||||
* @name Phaser.Loader.LoaderPlugin#scene
|
||||
* @type {Phaser.Scene}
|
||||
* @protected
|
||||
* @since 3.0.0
|
||||
*/
|
||||
this.scene = scene;
|
||||
|
@ -75,7 +74,6 @@ var LoaderPlugin = new Class({
|
|||
*
|
||||
* @name Phaser.Loader.LoaderPlugin#systems
|
||||
* @type {Phaser.Scenes.Systems}
|
||||
* @protected
|
||||
* @since 3.0.0
|
||||
*/
|
||||
this.systems = scene.sys;
|
||||
|
@ -85,7 +83,6 @@ var LoaderPlugin = new Class({
|
|||
*
|
||||
* @name Phaser.Loader.LoaderPlugin#cacheManager
|
||||
* @type {Phaser.Cache.CacheManager}
|
||||
* @protected
|
||||
* @since 3.7.0
|
||||
*/
|
||||
this.cacheManager = scene.sys.cache;
|
||||
|
@ -95,7 +92,6 @@ var LoaderPlugin = new Class({
|
|||
*
|
||||
* @name Phaser.Loader.LoaderPlugin#textureManager
|
||||
* @type {Phaser.Textures.TextureManager}
|
||||
* @protected
|
||||
* @since 3.7.0
|
||||
*/
|
||||
this.textureManager = scene.sys.textures;
|
||||
|
|
Loading…
Reference in a new issue