@urso/core 0.7.38 → 0.7.39

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.7.38",
3
+ "version": "0.7.39",
4
4
  "description": "HTML5 game engine",
5
5
  "main": "build/js/index.js",
6
6
  "author": "Megbrimef",
@@ -146,13 +146,14 @@ class LibLoader {
146
146
  }.bind(this));
147
147
  };
148
148
 
149
-
150
149
  _onError(error) {
151
150
  Urso.logger.warn('LibLoader file load error: ', error);
151
+
152
152
  this._loader.reset();
153
153
  this._isRunning = false;
154
154
  this._lastLoadFailed = true;
155
155
 
156
+ Urso.logger.warn('LibLoader all assets RELOAD...');
156
157
  this._resizeTimeoutId = Urso.setTimeout(() => this.start(this._completeCallback), this.RELOAD_DELAY);
157
158
  }
158
159