@woosh/meep-engine 2.43.26 → 2.43.28
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/core/geom/Quaternion.js
CHANGED
|
@@ -1278,10 +1278,10 @@ class Quaternion {
|
|
|
1278
1278
|
az = this.z,
|
|
1279
1279
|
aw = this.w;
|
|
1280
1280
|
|
|
1281
|
-
let bx =
|
|
1282
|
-
by =
|
|
1283
|
-
bz =
|
|
1284
|
-
bw =
|
|
1281
|
+
let bx = other.x,
|
|
1282
|
+
by = other.y,
|
|
1283
|
+
bz = other.z,
|
|
1284
|
+
bw = other.w;
|
|
1285
1285
|
|
|
1286
1286
|
let omega, cosom, sinom, scale0, scale1;
|
|
1287
1287
|
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"productName": "Meep",
|
|
6
6
|
"description": "production-ready JavaScript game engine based on Entity Component System Architecture",
|
|
7
7
|
"author": "Alexander Goldring",
|
|
8
|
-
"version": "2.43.
|
|
8
|
+
"version": "2.43.28",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"gl-matrix": "3.4.3",
|
|
11
11
|
"fast-levenshtein": "2.0.6",
|