@woosh/meep-engine 2.86.3 → 2.86.4

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.
@@ -49572,7 +49572,7 @@ class Sampler2D {
49572
49572
  const i0 = (y * width + x) * itemSize;
49573
49573
 
49574
49574
  for (let i = 0; i < itemSize; i++) {
49575
- this.data[i0 + i] = result[i];
49575
+ this.data[i0 + i] = data[i];
49576
49576
  }
49577
49577
  }
49578
49578
 
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "description": "Fully featured ECS game engine written in JavaScript",
6
6
  "type": "module",
7
7
  "author": "Alexander Goldring",
8
- "version": "2.86.3",
8
+ "version": "2.86.4",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {