@urso/core 0.4.53 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@urso/core",
3
- "version": "0.4.53",
3
+ "version": "0.5.0",
4
4
  "description": "HTML5 game engine",
5
5
  "main": "build/js/index.js",
6
6
  "author": "Megbrimef",
@@ -131,8 +131,11 @@ class ModulesScenesService {
131
131
  //call all components create
132
132
  this._sceneModel.create();
133
133
 
134
- this.emit(Urso.events.MODULES_SCENES_DISPLAY_FINISHED);
134
+ //reset display flag
135
135
  this._displayInProgress = false;
136
+
137
+ //emit end of display event
138
+ this.emit(Urso.events.MODULES_SCENES_DISPLAY_FINISHED);
136
139
  }
137
140
  }
138
141