We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 692ca92 commit 3d80568Copy full SHA for 3d80568
2 files changed
README.md
@@ -72,6 +72,7 @@ Version 2.0.6 - "Jornhill" - -in development-
72
* Frame.setTrim no longer modifies the Frame width and height values.
73
* AnimationParser doesn't populate the Pixi.TextureCache for every frame any longer. Each display object has its own texture property instead.
74
* Removed the cacheKey parameters from the AnimationParser methods as they're no longer used.
75
+* Loader.isLoading is set to false if the filelist size is zero.
76
77
### CocoonJS Specific Updates
78
src/loader/Loader.js
@@ -947,6 +947,7 @@ Phaser.Loader.prototype = {
947
this.progress = 100;
948
this.progressFloat = 100;
949
this.hasLoaded = true;
950
+ this.isLoading = false;
951
this.onLoadComplete.dispatch();
952
}
953
0 commit comments