@woosh/meep-engine 2.92.21 → 2.92.22

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.92.21",
8
+ "version": "2.92.22",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -5,19 +5,22 @@ import {DrawMode} from "./DrawMode";
5
5
  export class ShadedGeometry {
6
6
  geometry: BufferGeometry
7
7
  material: Material
8
+ draw_method: number
9
+ flags: number
10
+
8
11
  readonly mode: DrawMode
9
12
 
10
13
  getBoundingBox(destination: AABB3): void
11
14
 
12
15
  from(geometry: BufferGeometry, material: Material, draw_mode?: DrawMode): void
13
16
 
14
- copy(other:ShadedGeometry):void
17
+ copy(other: ShadedGeometry): void
15
18
 
16
- clone():ShadedGeometry
19
+ clone(): ShadedGeometry
17
20
 
18
- equals(other:ShadedGeometry):boolean
21
+ equals(other: ShadedGeometry): boolean
19
22
 
20
- hash():number
23
+ hash(): number
21
24
 
22
25
  static from(geometry: BufferGeometry, material: Material, draw_mode?: DrawMode): ShadedGeometry
23
26
  }