@dcl/protocol 1.0.0-3808528053.commit-d66d462 → 1.0.0-3825036757.commit-42e850e

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/protocol",
3
- "version": "1.0.0-3808528053.commit-d66d462",
3
+ "version": "1.0.0-3825036757.commit-42e850e",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -25,5 +25,5 @@
25
25
  "out-ts",
26
26
  "public"
27
27
  ],
28
- "commit": "d66d46238f6713d295d8bd2a9c090ba13345034b"
28
+ "commit": "42e850e15ed0d8594607f3c4270d519703c44cde"
29
29
  }
@@ -7,11 +7,14 @@ import "decentraland/sdk/components/common/id.proto";
7
7
  option (common.ecs_component_id) = 1090;
8
8
 
9
9
  enum BillboardMode {
10
- BM_ALL_AXES = 0;
11
- BM_Y_AXE = 1;
10
+ BM_NONE = 0;
11
+ BM_X = 1;
12
+ BM_Y = 2;
13
+ BM_Z = 4;
14
+ BM_ALL = 7;
12
15
  }
13
16
 
14
17
  message PBBillboard {
15
- optional BillboardMode billboard_mode = 1; // default=BM_ALL_AXES
16
- optional bool opposite_direction = 2; // default=false
18
+ // default=BM_ALL
19
+ optional BillboardMode billboard_mode = 1;
17
20
  }