@woosh/meep-engine 2.37.13 → 2.37.14

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.
@@ -171,12 +171,14 @@ export class Transform {
171
171
  * @param {Transform} other
172
172
  */
173
173
  copy(other) {
174
+ this.clearFlag(TransformFlags.AutomaticChangeDetection);
175
+
176
+ this.matrix.set(other.matrix);
177
+
174
178
  this.position.copy(other.position);
175
179
  this.rotation.copy(other.rotation);
176
180
  this.scale.copy(other.scale);
177
181
 
178
- this.matrix.set(other.matrix);
179
-
180
182
  this.flags = other.flags;
181
183
  }
182
184
 
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.37.13",
8
+ "version": "2.37.14",
9
9
  "dependencies": {
10
10
  "gl-matrix": "3.4.3",
11
11
  "fast-levenshtein": "2.0.6",