@woosh/meep-engine 2.111.15 → 2.112.0

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.
Files changed (18) hide show
  1. package/package.json +1 -1
  2. package/src/engine/graphics/geometry/AttributeGroupSpec.d.ts.map +1 -0
  3. package/src/engine/graphics/geometry/{VertexDataSpec.js → AttributeGroupSpec.js} +6 -6
  4. package/src/engine/graphics/geometry/AttributeSpec.d.ts +4 -0
  5. package/src/engine/graphics/particles/particular/engine/emitter/PARTICULAR_PARTICLE_SPECIFICATION.d.ts +1 -2
  6. package/src/engine/graphics/particles/particular/engine/emitter/PARTICULAR_PARTICLE_SPECIFICATION.d.ts.map +1 -1
  7. package/src/engine/graphics/particles/particular/engine/emitter/PARTICULAR_PARTICLE_SPECIFICATION.js +3 -3
  8. package/src/engine/graphics/particles/particular/engine/emitter/ParticlePool.d.ts +4 -4
  9. package/src/engine/graphics/particles/particular/engine/emitter/ParticlePool.d.ts.map +1 -1
  10. package/src/engine/graphics/particles/particular/engine/emitter/ParticlePool.js +3 -3
  11. package/src/engine/graphics/particles/particular/engine/renderers/billboard/BILLBOARD_PARTICLE_SPECIFICATION.d.ts +1 -2
  12. package/src/engine/graphics/particles/particular/engine/renderers/billboard/BILLBOARD_PARTICLE_SPECIFICATION.d.ts.map +1 -1
  13. package/src/engine/graphics/particles/particular/engine/renderers/billboard/BILLBOARD_PARTICLE_SPECIFICATION.js +3 -3
  14. package/src/engine/graphics/particles/particular/group/ParticleSpecification.d.ts +1 -1
  15. package/src/engine/graphics/particles/particular/group/ParticleSpecification.js +1 -1
  16. package/src/engine/navigation/ecs/components/Path.js +3 -3
  17. package/src/engine/graphics/geometry/VertexDataSpec.d.ts.map +0 -1
  18. /package/src/engine/graphics/geometry/{VertexDataSpec.d.ts → AttributeGroupSpec.d.ts} +0 -0
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.111.15",
8
+ "version": "2.112.0",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AttributeGroupSpec.d.ts","sourceRoot":"","sources":["../../../../../src/engine/graphics/geometry/AttributeGroupSpec.js"],"names":[],"mappings":"AAYA;;;GAGG;AACH;IAeI;;;;OAIG;IACH,2BAHW,aAAa,GACX,kBAAkB,CAQ9B;IAxBD;;;OAGG;IACH,YAFU,aAAa,EAAE,CAET;IAsBhB;;;;OAIG;IACH,yBAHW,MAAM,GACL,aAAa,GAAC,SAAS,CAgBlC;IAED;;;OAGG;IACH,8BAFW,MAAM,GADJ,MAAM,CAiBlB;IAED;;;OAGG;IACH,oBAFW,aAAa,EAAE,QAOzB;IAED;;;;OAIG;IACH,eAHW,aAAa,GACZ,kBAAkB,CAkB7B;IAED;;;OAGG;IACH,0BAFW,aAAa,EAAE,QAQzB;IAED,cAMC;IAED;;;;OAIG;IACH,cAHW,kBAAkB,GAChB,OAAO,CAQnB;IAED,sBASC;IAED,eAMC;IAED;;MAIC;IAED;;aAkBC;IAED;;;OAGG;IACH,eAFa,MAAM,CAelB;IAIL;;;OAGG;IACH,+BAFU,OAAO,CAEgC;;CAPhD;8BAnN6B,oBAAoB"}
@@ -14,7 +14,7 @@ const RESERVED_HASH = 1234567;
14
14
  * Describes a set of data attributes. A good analogy would be "all data associated with geometry vertex"
15
15
  * @example "uv","position" and "normal" attributes of geometry vertices
16
16
  */
17
- export class VertexDataSpec {
17
+ export class AttributeGroupSpec {
18
18
 
19
19
  /**
20
20
  *
@@ -32,10 +32,10 @@ export class VertexDataSpec {
32
32
  /**
33
33
  *
34
34
  * @param {AttributeSpec} attributes
35
- * @returns {VertexDataSpec}
35
+ * @returns {AttributeGroupSpec}
36
36
  */
37
37
  static from(...attributes) {
38
- const r = new VertexDataSpec();
38
+ const r = new AttributeGroupSpec();
39
39
 
40
40
  r.addMany(attributes);
41
41
 
@@ -97,7 +97,7 @@ export class VertexDataSpec {
97
97
  /**
98
98
  *
99
99
  * @param {AttributeSpec} attribute
100
- * @return {VertexDataSpec}
100
+ * @return {AttributeGroupSpec}
101
101
  */
102
102
  add(attribute) {
103
103
 
@@ -139,7 +139,7 @@ export class VertexDataSpec {
139
139
 
140
140
  /**
141
141
  *
142
- * @param {VertexDataSpec} other
142
+ * @param {AttributeGroupSpec} other
143
143
  * @returns {boolean}
144
144
  */
145
145
  equals(other) {
@@ -220,4 +220,4 @@ export class VertexDataSpec {
220
220
  * @readonly
221
221
  * @type {boolean}
222
222
  */
223
- VertexDataSpec.prototype.isVertexDataSpec = true;
223
+ AttributeGroupSpec.prototype.isAttributeGroupSpec = true;
@@ -5,4 +5,8 @@ export class AttributeSpec {
5
5
  readonly type: BinaryDataType
6
6
  readonly itemSize: number
7
7
  readonly normalized: boolean
8
+
9
+ fromJSON(json: { name: string, type: BinaryDataType, itemSize: number, normalized: boolean })
10
+
11
+ static fromJSON(json: { name: string, type: BinaryDataType, itemSize: number, normalized: boolean }): AttributeSpec
8
12
  }
@@ -1,3 +1,2 @@
1
- export const PARTICULAR_PARTICLE_SPECIFICATION: VertexDataSpec;
2
- import { VertexDataSpec } from "../../../../geometry/VertexDataSpec.js";
1
+ export const PARTICULAR_PARTICLE_SPECIFICATION: any;
3
2
  //# sourceMappingURL=PARTICULAR_PARTICLE_SPECIFICATION.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PARTICULAR_PARTICLE_SPECIFICATION.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/particles/particular/engine/emitter/PARTICULAR_PARTICLE_SPECIFICATION.js"],"names":[],"mappings":"AAKA,+DAAsE;+BALvC,wCAAwC"}
1
+ {"version":3,"file":"PARTICULAR_PARTICLE_SPECIFICATION.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/particles/particular/engine/emitter/PARTICULAR_PARTICLE_SPECIFICATION.js"],"names":[],"mappings":"AAKA,oDAA0E"}
@@ -1,9 +1,9 @@
1
- import { VertexDataSpec } from "../../../../geometry/VertexDataSpec.js";
2
- import { AttributeSpec } from "../../../../geometry/AttributeSpec.js";
3
1
  import { BinaryDataType } from "../../../../../../core/binary/type/BinaryDataType.js";
2
+ import { AttributeGroupSpec } from "../../../../geometry/AttributeGroupSpec.js";
3
+ import { AttributeSpec } from "../../../../geometry/AttributeSpec.js";
4
4
 
5
5
  //build particle spec
6
- export const PARTICULAR_PARTICLE_SPECIFICATION = new VertexDataSpec();
6
+ export const PARTICULAR_PARTICLE_SPECIFICATION = new AttributeGroupSpec();
7
7
 
8
8
  PARTICULAR_PARTICLE_SPECIFICATION.add(AttributeSpec.fromJSON({
9
9
  name: 'position',
@@ -1,10 +1,10 @@
1
1
  export class ParticlePool {
2
2
  /**
3
3
  *
4
- * @param {VertexDataSpec} spec
4
+ * @param {AttributeGroupSpec} spec
5
5
  * @constructor
6
6
  */
7
- constructor(spec: VertexDataSpec);
7
+ constructor(spec: AttributeGroupSpec);
8
8
  /**
9
9
  *
10
10
  * @type {BitSet}
@@ -36,9 +36,9 @@ export class ParticlePool {
36
36
  capacity: number;
37
37
  /**
38
38
  *
39
- * @type {VertexDataSpec}
39
+ * @type {AttributeGroupSpec}
40
40
  */
41
- spec: VertexDataSpec;
41
+ spec: AttributeGroupSpec;
42
42
  size(): number;
43
43
  /**
44
44
  *
@@ -1 +1 @@
1
- {"version":3,"file":"ParticlePool.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/particles/particular/engine/emitter/ParticlePool.js"],"names":[],"mappings":"AAcA;IAoCI;;;;OAIG;IACH,kCAWC;IAnDD;;;OAGG;IACH,WAFU,MAAM,CAES;IAEzB;;;OAGG;IACH,YAFU,eAAe,EAAE,CAEX;IAEhB;;OAEG;IACH,cAAmC;IAEnC;;;OAGG;IACH,YAFU,MAAM,CAEC;IAEjB;;;OAGG;IACH,cAFU,MAAM,CAEG;IAEnB;;;OAGG;IACH,UAFU,MAAM,CAEF;IAUV;;;OAGG;IACH,qBAAgB;IAMpB,eAEC;IAED;;;OAGG;IACH,UAFa,MAAM,CAiBlB;IAED;;;OAGG;IACH,YAFa,OAAO,CAMnB;IAED;;;OAGG;IACH,cAFW,MAAM,QAIhB;IAED;;OAEG;IACH,gBA4CC;IAED,yBAsBC;IAED,eASC;IAED;;;;;OAKG;IACH,aAHW,MAAM,UACN,MAAM,QAgChB;IAED,cA+CC;IAED;;;OAGG;IACH,uBAFW,MAAM,QAYhB;IAED;;;OAGG;IACH,4BAFW,MAAM,QAWhB;IAED;;;OAGG;IACH,yBAFW,MAAM,QAiBhB;IAED;;;;;OAKG;IACH,8DAFa,MAAM,CAQlB;IAED;;;;;OAKG;IACH,qEAFW,MAAM,QAQhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAWlB;IAED;;;;;;OAMG;IACH,kEAHW,MAAM,KACN,MAAM,QAWhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAYlB;IAED;;;;;;;OAOG;IACH,kEAJW,MAAM,KACN,MAAM,KACN,MAAM,QAYhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAalB;IAED;;;;;;;;OAQG;IACH,kEALW,MAAM,KACN,MAAM,KACN,MAAM,KACN,MAAM,QAahB;IAED;;;;;OAKG;IACH,2CAHW,MAAM,SACN,MAAM,EAAE,GAAC,YAAY,GAAC,UAAU,GAAC,WAAW,GAAC,SAAS,GAAC,UAAU,QA4B3E;IAED;;;;OAIG;IACH,+DAHW,MAAM,UACN,MAAM,EAAE,QAgBlB;IAED,gBAOC;CACJ;uBAzhBsB,yCAAyC;gCAFC,OAAO"}
1
+ {"version":3,"file":"ParticlePool.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/particles/particular/engine/emitter/ParticlePool.js"],"names":[],"mappings":"AAcA;IAoCI;;;;OAIG;IACH,sCAWC;IAnDD;;;OAGG;IACH,WAFU,MAAM,CAES;IAEzB;;;OAGG;IACH,YAFU,eAAe,EAAE,CAEX;IAEhB;;OAEG;IACH,cAAmC;IAEnC;;;OAGG;IACH,YAFU,MAAM,CAEC;IAEjB;;;OAGG;IACH,cAFU,MAAM,CAEG;IAEnB;;;OAGG;IACH,UAFU,MAAM,CAEF;IAUV;;;OAGG;IACH,yBAAgB;IAMpB,eAEC;IAED;;;OAGG;IACH,UAFa,MAAM,CAiBlB;IAED;;;OAGG;IACH,YAFa,OAAO,CAMnB;IAED;;;OAGG;IACH,cAFW,MAAM,QAIhB;IAED;;OAEG;IACH,gBA4CC;IAED,yBAsBC;IAED,eASC;IAED;;;;;OAKG;IACH,aAHW,MAAM,UACN,MAAM,QAgChB;IAED,cA+CC;IAED;;;OAGG;IACH,uBAFW,MAAM,QAYhB;IAED;;;OAGG;IACH,4BAFW,MAAM,QAWhB;IAED;;;OAGG;IACH,yBAFW,MAAM,QAiBhB;IAED;;;;;OAKG;IACH,8DAFa,MAAM,CAQlB;IAED;;;;;OAKG;IACH,qEAFW,MAAM,QAQhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAWlB;IAED;;;;;;OAMG;IACH,kEAHW,MAAM,KACN,MAAM,QAWhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAYlB;IAED;;;;;;;OAOG;IACH,kEAJW,MAAM,KACN,MAAM,KACN,MAAM,QAYhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAalB;IAED;;;;;;;;OAQG;IACH,kEALW,MAAM,KACN,MAAM,KACN,MAAM,KACN,MAAM,QAahB;IAED;;;;;OAKG;IACH,2CAHW,MAAM,SACN,MAAM,EAAE,GAAC,YAAY,GAAC,UAAU,GAAC,WAAW,GAAC,SAAS,GAAC,UAAU,QA4B3E;IAED;;;;OAIG;IACH,+DAHW,MAAM,UACN,MAAM,EAAE,QAgBlB;IAED,gBAOC;CACJ;uBAzhBsB,yCAAyC;gCAFC,OAAO"}
@@ -50,15 +50,15 @@ export class ParticlePool {
50
50
 
51
51
  /**
52
52
  *
53
- * @param {VertexDataSpec} spec
53
+ * @param {AttributeGroupSpec} spec
54
54
  * @constructor
55
55
  */
56
56
  constructor(spec) {
57
- assert.equal(spec.isVertexDataSpec, true, 'spec.VertexDataSpec !== true');
57
+ assert.equal(spec.isAttributeGroupSpec, true, 'spec.VertexDataSpec !== true');
58
58
 
59
59
  /**
60
60
  *
61
- * @type {VertexDataSpec}
61
+ * @type {AttributeGroupSpec}
62
62
  */
63
63
  this.spec = spec;
64
64
 
@@ -4,6 +4,5 @@ export const BILLBOARD_PARTICLE_ATTRIBUTE_SIZE: 2;
4
4
  export const BILLBOARD_PARTICLE_ATTRIBUTE_VELOCITY: 3;
5
5
  export const BILLBOARD_PARTICLE_ATTRIBUTE_COLOR: 5;
6
6
  export const BILLBOARD_PARTICLE_ATTRIBUTE_BLEND: 6;
7
- export const BILLBOARD_PARTICLE_SPECIFICATION: VertexDataSpec;
8
- import { VertexDataSpec } from "../../../../../geometry/VertexDataSpec.js";
7
+ export const BILLBOARD_PARTICLE_SPECIFICATION: any;
9
8
  //# sourceMappingURL=BILLBOARD_PARTICLE_SPECIFICATION.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BILLBOARD_PARTICLE_SPECIFICATION.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/engine/graphics/particles/particular/engine/renderers/billboard/BILLBOARD_PARTICLE_SPECIFICATION.js"],"names":[],"mappings":"AAIA,sDAAuD;AACvD,gDAAiD;AACjD,kDAAmD;AACnD,sDAAuD;AACvD,mDAAoD;AACpD,mDAAoD;AAEpD,8DAAqE;+BAXtC,2CAA2C"}
1
+ {"version":3,"file":"BILLBOARD_PARTICLE_SPECIFICATION.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/engine/graphics/particles/particular/engine/renderers/billboard/BILLBOARD_PARTICLE_SPECIFICATION.js"],"names":[],"mappings":"AAIA,sDAAuD;AACvD,gDAAiD;AACjD,kDAAmD;AACnD,sDAAuD;AACvD,mDAAoD;AACpD,mDAAoD;AAEpD,mDAAyE"}
@@ -1,6 +1,6 @@
1
- import { VertexDataSpec } from "../../../../../geometry/VertexDataSpec.js";
2
- import { AttributeSpec } from "../../../../../geometry/AttributeSpec.js";
3
1
  import { BinaryDataType } from "../../../../../../../core/binary/type/BinaryDataType.js";
2
+ import { AttributeGroupSpec } from "../../../../../geometry/AttributeGroupSpec.js";
3
+ import { AttributeSpec } from "../../../../../geometry/AttributeSpec.js";
4
4
 
5
5
  export const BILLBOARD_PARTICLE_ATTRIBUTE_POSITION = 0;
6
6
  export const BILLBOARD_PARTICLE_ATTRIBUTE_UV = 1;
@@ -9,7 +9,7 @@ export const BILLBOARD_PARTICLE_ATTRIBUTE_VELOCITY = 3;
9
9
  export const BILLBOARD_PARTICLE_ATTRIBUTE_COLOR = 5;
10
10
  export const BILLBOARD_PARTICLE_ATTRIBUTE_BLEND = 6;
11
11
 
12
- export const BILLBOARD_PARTICLE_SPECIFICATION = new VertexDataSpec();
12
+ export const BILLBOARD_PARTICLE_SPECIFICATION = new AttributeGroupSpec();
13
13
 
14
14
  BILLBOARD_PARTICLE_SPECIFICATION.add(AttributeSpec.fromJSON({ name: 'position', itemSize: 3, type: BinaryDataType.Float32 }));
15
15
  BILLBOARD_PARTICLE_SPECIFICATION.add(AttributeSpec.fromJSON({
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  *
3
- * @deprecated use {@link VertexDataSpec} instead
3
+ * @deprecated use {@link AttributeGroupSpec} instead
4
4
  */
5
5
  export class ParticleSpecification {
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  *
3
- * @deprecated use {@link VertexDataSpec} instead
3
+ * @deprecated use {@link AttributeGroupSpec} instead
4
4
  */
5
5
  export class ParticleSpecification {
6
6
  /**
@@ -15,8 +15,8 @@ import {
15
15
  import {
16
16
  v3_computeCatmullRomSplineUniformDistance
17
17
  } from "../../../../core/math/spline/v3_computeCatmullRomSplineUniformDistance.js";
18
+ import { AttributeGroupSpec } from "../../../graphics/geometry/AttributeGroupSpec.js";
18
19
  import { AttributeSpec } from "../../../graphics/geometry/AttributeSpec.js";
19
- import { VertexDataSpec } from "../../../graphics/geometry/VertexDataSpec.js";
20
20
  import { InterpolationType } from "./InterpolationType.js";
21
21
 
22
22
  const scratch_v3_a = new Float32Array(3);
@@ -62,10 +62,10 @@ class Path {
62
62
  constructor() {
63
63
  /**
64
64
  *
65
- * @type {VertexDataSpec}
65
+ * @type {AttributeGroupSpec}
66
66
  * @private
67
67
  */
68
- this.__spec = VertexDataSpec.from(
68
+ this.__spec = AttributeGroupSpec.from(
69
69
  AttributeSpec.fromJSON({
70
70
  name: 'position',
71
71
  type: BinaryDataType.Float32,
@@ -1 +0,0 @@
1
- {"version":3,"file":"VertexDataSpec.d.ts","sourceRoot":"","sources":["../../../../../src/engine/graphics/geometry/VertexDataSpec.js"],"names":[],"mappings":"AAYA;;;GAGG;AACH;IAeI;;;;OAIG;IACH,2BAHW,aAAa,GACX,cAAc,CAQ1B;IAxBD;;;OAGG;IACH,YAFU,aAAa,EAAE,CAET;IAsBhB;;;;OAIG;IACH,yBAHW,MAAM,GACL,aAAa,GAAC,SAAS,CAgBlC;IAED;;;OAGG;IACH,8BAFW,MAAM,GADJ,MAAM,CAiBlB;IAED;;;OAGG;IACH,oBAFW,aAAa,EAAE,QAOzB;IAED;;;;OAIG;IACH,eAHW,aAAa,GACZ,cAAc,CAkBzB;IAED;;;OAGG;IACH,0BAFW,aAAa,EAAE,QAQzB;IAED,cAMC;IAED;;;;OAIG;IACH,cAHW,cAAc,GACZ,OAAO,CAQnB;IAED,sBASC;IAED,eAMC;IAED;;MAIC;IAED;;aAkBC;IAED;;;OAGG;IACH,eAFa,MAAM,CAelB;IAIL;;;OAGG;IACH,2BAFU,OAAO,CAEwB;;CAPxC;8BAnN6B,oBAAoB"}