@dcl/ecs 7.0.6-3832097301.commit-4e46b20 → 7.0.6-3832166523.commit-2a75a6b

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.
@@ -1,13 +1,14 @@
1
1
  import _m0 from "protobufjs/minimal";
2
2
  export declare const enum BillboardMode {
3
- BM_ALL_AXES = 0,
4
- BM_Y_AXE = 1
3
+ BM_NONE = 0,
4
+ BM_X = 1,
5
+ BM_Y = 2,
6
+ BM_Z = 4,
7
+ BM_ALL = 7
5
8
  }
6
9
  export interface PBBillboard {
7
- /** default=BM_ALL_AXES */
10
+ /** default=BM_ALL */
8
11
  billboardMode?: BillboardMode | undefined;
9
- /** default=false */
10
- oppositeDirection?: boolean | undefined;
11
12
  }
12
13
  /**
13
14
  * Internal
@@ -3,11 +3,14 @@ import _m0 from "protobufjs/minimal";
3
3
  const protobufPackage = "decentraland.sdk.components";
4
4
  export var BillboardMode;
5
5
  (function (BillboardMode) {
6
- BillboardMode[BillboardMode["BM_ALL_AXES"] = 0] = "BM_ALL_AXES";
7
- BillboardMode[BillboardMode["BM_Y_AXE"] = 1] = "BM_Y_AXE";
6
+ BillboardMode[BillboardMode["BM_NONE"] = 0] = "BM_NONE";
7
+ BillboardMode[BillboardMode["BM_X"] = 1] = "BM_X";
8
+ BillboardMode[BillboardMode["BM_Y"] = 2] = "BM_Y";
9
+ BillboardMode[BillboardMode["BM_Z"] = 4] = "BM_Z";
10
+ BillboardMode[BillboardMode["BM_ALL"] = 7] = "BM_ALL";
8
11
  })(BillboardMode || (BillboardMode = {}));
9
12
  function createBasePBBillboard() {
10
- return { billboardMode: undefined, oppositeDirection: undefined };
13
+ return { billboardMode: undefined };
11
14
  }
12
15
  /**
13
16
  * Internal
@@ -17,9 +20,6 @@ export const PBBillboard = {
17
20
  if (message.billboardMode !== undefined) {
18
21
  writer.uint32(8).int32(message.billboardMode);
19
22
  }
20
- if (message.oppositeDirection !== undefined) {
21
- writer.uint32(16).bool(message.oppositeDirection);
22
- }
23
23
  return writer;
24
24
  },
25
25
  decode(input, length) {
@@ -32,9 +32,6 @@ export const PBBillboard = {
32
32
  case 1:
33
33
  message.billboardMode = reader.int32();
34
34
  break;
35
- case 2:
36
- message.oppositeDirection = reader.bool();
37
- break;
38
35
  default:
39
36
  reader.skipType(tag & 7);
40
37
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/ecs",
3
- "version": "7.0.6-3832097301.commit-4e46b20",
3
+ "version": "7.0.6-3832166523.commit-2a75a6b",
4
4
  "description": "Decentraland ECS",
5
5
  "main": "./dist/index.js",
6
6
  "typings": "./dist/index.d.ts",
@@ -27,9 +27,9 @@
27
27
  "ts-proto": "^1.112.0"
28
28
  },
29
29
  "dependencies": {
30
- "@dcl/crdt": "7.0.6-3832097301.commit-4e46b20",
30
+ "@dcl/crdt": "7.0.6-3832166523.commit-2a75a6b",
31
31
  "@dcl/js-runtime": "file:../js-runtime",
32
- "@dcl/protocol": "^1.0.0-3808528053.commit-d66d462"
32
+ "@dcl/protocol": "^1.0.0-3825036757.commit-42e850e"
33
33
  },
34
34
  "files": [
35
35
  "dist",
@@ -41,5 +41,5 @@
41
41
  "displayName": "ECS",
42
42
  "tsconfig": "./tsconfig.json"
43
43
  },
44
- "commit": "4e46b208355a0a0d340a899c44f98bebb94d0c8b"
44
+ "commit": "2a75a6b621cc2986c630cf290ba722a5a1288030"
45
45
  }