@woosh/meep-engine 2.81.0 → 2.81.1

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.81.0",
8
+ "version": "2.81.1",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -5,15 +5,7 @@
5
5
  import { assert } from "../assert.js";
6
6
  import { array_copy } from "../collection/array/array_copy.js";
7
7
  import { typed_array_copy } from "../collection/array/typed/typed_array_copy.js";
8
-
9
- /**
10
- *
11
- * @enum {boolean}
12
- */
13
- export const EndianType = {
14
- BigEndian: false,
15
- LittleEndian: true
16
- };
8
+ import { EndianType } from "./EndianType.js";
17
9
 
18
10
  /**
19
11
  *
@@ -0,0 +1,8 @@
1
+ /**
2
+ *
3
+ * @enum {boolean}
4
+ */
5
+ export const EndianType = {
6
+ BigEndian: false,
7
+ LittleEndian: true
8
+ };
@@ -2,15 +2,15 @@
2
2
  * @readonly
3
3
  * @enum {string}
4
4
  */
5
- import { EndianType } from "../../binary/BinaryBuffer.js";
5
+ import { assert } from "../../assert.js";
6
+ import { EndianType } from "../../binary/EndianType.js";
7
+ import { BinaryDataType } from "../../binary/type/BinaryDataType.js";
8
+ import { DataTypeByteSizes } from "../../binary/type/DataTypeByteSizes.js";
6
9
  import { Cache } from "../../cache/Cache.js";
7
10
  import { FunctionCompiler } from "../../function/FunctionCompiler.js";
8
11
  import { computeStringHash } from "../../primitives/strings/computeStringHash.js";
9
- import { isArrayEqualStrict } from "../array/isArrayEqualStrict.js";
10
- import { BinaryDataType } from "../../binary/type/BinaryDataType.js";
11
- import { DataTypeByteSizes } from "../../binary/type/DataTypeByteSizes.js";
12
- import { assert } from "../../assert.js";
13
12
  import { computeHashArray } from "../array/computeHashArray.js";
13
+ import { isArrayEqualStrict } from "../array/isArrayEqualStrict.js";
14
14
 
15
15
  /**
16
16
  * @readonly
@@ -1,6 +1,6 @@
1
- import { RowFirstTableSpec } from "./RowFirstTableSpec.js";
1
+ import { EndianType } from "../../binary/EndianType.js";
2
2
  import { BinaryDataType } from "../../binary/type/BinaryDataType.js";
3
- import { EndianType } from "../../binary/BinaryBuffer.js";
3
+ import { RowFirstTableSpec } from "./RowFirstTableSpec.js";
4
4
 
5
5
  test("constructor with 1 column does not throw", () => {
6
6
  expect(() => new RowFirstTableSpec([BinaryDataType.Float32])).not.toThrow();
@@ -1,10 +1,10 @@
1
- import { DataTypeIndices } from "../../../../../core/binary/type/DataTypeIndices.js";
2
- import { Sampler2D } from "../Sampler2D.js";
3
- import { EndianType } from "../../../../../core/binary/BinaryBuffer.js";
4
- import { BinaryDataType } from "../../../../../core/binary/type/BinaryDataType.js";
5
1
  import { assert } from "../../../../../core/assert.js";
2
+ import { EndianType } from "../../../../../core/binary/EndianType.js";
3
+ import { BinaryDataType } from "../../../../../core/binary/type/BinaryDataType.js";
6
4
  import { DataTypeByteSizes } from "../../../../../core/binary/type/DataTypeByteSizes.js";
7
5
  import { dataTypeFromTypedArray } from "../../../../../core/binary/type/dataTypeFromTypedArray.js";
6
+ import { DataTypeIndices } from "../../../../../core/binary/type/DataTypeIndices.js";
7
+ import { Sampler2D } from "../Sampler2D.js";
8
8
 
9
9
 
10
10
  /**
@@ -1,6 +1,6 @@
1
- import { RowFirstTableSpec } from "../../../../core/collection/table/RowFirstTableSpec.js";
1
+ import { EndianType } from "../../../../core/binary/EndianType.js";
2
2
  import { BinaryDataType } from "../../../../core/binary/type/BinaryDataType.js";
3
- import { EndianType } from "../../../../core/binary/BinaryBuffer.js";
3
+ import { RowFirstTableSpec } from "../../../../core/collection/table/RowFirstTableSpec.js";
4
4
 
5
5
  export const ribbon_attributes_spec = new RowFirstTableSpec([
6
6
  // age