@woosh/meep-engine 2.85.11 → 2.85.12

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.11",
8
+ "version": "2.85.12",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -14,6 +14,8 @@ export class Sampler2D {
14
14
 
15
15
  sampleChannelBilinear(x: number, y: number, channel: number): number
16
16
 
17
+ resize(x: number, y: number, preserveData?: boolean): void
18
+
17
19
  static uint8clamped(itemSize: number, width: number, height: number): Sampler2D
18
20
 
19
21
  static uint8(itemSize: number, width: number, height: number): Sampler2D