@woosh/meep-engine 2.85.12 → 2.85.13

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
@@ -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.85.12",
8
+ "version": "2.85.13",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -6,6 +6,8 @@ export class Sampler2D {
6
6
 
7
7
  readonly itemSize: number
8
8
 
9
+ readonly data: ArrayLike<number>
10
+
9
11
  readChannel(x: number, y: number, channel: number): number
10
12
 
11
13
  writeChannel(x: number, y: number, channel: number, value: number): void