vue-phaserjs 1.39.0 → 1.40.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/dist/index.js +2 -4
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -226921,14 +226921,12 @@ class z0 extends N3 {
|
|
|
226921
226921
|
const R = (U = X.xhrLoader) == null ? void 0 : U.responseText;
|
|
226922
226922
|
if (!R) throw new yf(en.Read, this.addToCache.name, X.url.toString());
|
|
226923
226923
|
const c = await Tc(R), y = d2(c.tileset), t = X.tilesetIndex;
|
|
226924
|
-
S.data.tilesets[t]
|
|
226925
|
-
...S.data.tilesets[t],
|
|
226926
|
-
...y,
|
|
226924
|
+
Object.assign(S.data.tilesets[t], y, {
|
|
226927
226925
|
imageheight: y.image.height,
|
|
226928
226926
|
imagewidth: y.image.width,
|
|
226929
226927
|
// Avoid throwing in tilemap creator
|
|
226930
226928
|
source: void 0
|
|
226931
|
-
};
|
|
226929
|
+
});
|
|
226932
226930
|
}
|
|
226933
226931
|
this.loader.cacheManager.tilemap.add(S.key, {
|
|
226934
226932
|
data: S.data,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-phaserjs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.40.0",
|
|
4
4
|
"description": "A component library to integrate Phaser Framework with Vue.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"export:gen": "ctix build --config ../configuration/.ctirc-vue && ctix build --config ../configuration/.ctirc-ts"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@esposter/shared": "1.
|
|
36
|
-
"parse-tmx": "1.
|
|
35
|
+
"@esposter/shared": "1.40.0",
|
|
36
|
+
"parse-tmx": "1.40.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@esposter/configuration": "1.
|
|
39
|
+
"@esposter/configuration": "1.40.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"phaser": "^3.88.2",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"pinia": "^3.0.1",
|
|
45
45
|
"vue": "^3.5.13"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "c668906c5b6b1ad0db7cc7b3b0f1f5194d9025e3"
|
|
48
48
|
}
|