@dcl/ecs 7.1.4-4578394386.commit-04912cc → 7.1.4-4598596181.commit-a983260

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.
@@ -9,8 +9,7 @@ export declare const enum ColliderLayer {
9
9
  CL_POINTER = 1,
10
10
  /** CL_PHYSICS - collision affecting your player's physics i.e. walls, floor, moving platfroms */
11
11
  CL_PHYSICS = 2,
12
- /** CL_VISIBLE_MESHES - all visible meshes, use with extreme care since the performance penalty is high */
13
- CL_VISIBLE_MESHES = 4,
12
+ CL_RESERVED1 = 4,
14
13
  CL_RESERVED2 = 8,
15
14
  CL_RESERVED3 = 16,
16
15
  CL_RESERVED4 = 32,
@@ -13,8 +13,7 @@ export var ColliderLayer;
13
13
  ColliderLayer[ColliderLayer["CL_POINTER"] = 1] = "CL_POINTER";
14
14
  /** CL_PHYSICS - collision affecting your player's physics i.e. walls, floor, moving platfroms */
15
15
  ColliderLayer[ColliderLayer["CL_PHYSICS"] = 2] = "CL_PHYSICS";
16
- /** CL_VISIBLE_MESHES - all visible meshes, use with extreme care since the performance penalty is high */
17
- ColliderLayer[ColliderLayer["CL_VISIBLE_MESHES"] = 4] = "CL_VISIBLE_MESHES";
16
+ ColliderLayer[ColliderLayer["CL_RESERVED1"] = 4] = "CL_RESERVED1";
18
17
  ColliderLayer[ColliderLayer["CL_RESERVED2"] = 8] = "CL_RESERVED2";
19
18
  ColliderLayer[ColliderLayer["CL_RESERVED3"] = 16] = "CL_RESERVED3";
20
19
  ColliderLayer[ColliderLayer["CL_RESERVED4"] = 32] = "CL_RESERVED4";
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/ecs",
3
3
  "description": "Decentraland ECS",
4
- "version": "7.1.4-4578394386.commit-04912cc",
4
+ "version": "7.1.4-4598596181.commit-a983260",
5
5
  "author": "DCL",
6
6
  "bugs": "https://github.com/decentraland/ecs/issues",
7
7
  "dependencies": {
8
- "@dcl/js-runtime": "7.1.4-4578394386.commit-04912cc"
8
+ "@dcl/js-runtime": "7.1.4-4598596181.commit-a983260"
9
9
  },
10
10
  "devDependencies": {
11
11
  "ts-proto": "^1.122.0"
@@ -34,5 +34,5 @@
34
34
  },
35
35
  "types": "./dist/index.d.ts",
36
36
  "typings": "./dist/index.d.ts",
37
- "commit": "04912ccc6224d33a8ca07011906625478c1c941d"
37
+ "commit": "a98326033a3f1903fa65a052349b01af73941633"
38
38
  }