@dcl/protocol 1.0.0-2624200185.commit-c8884fe → 1.0.0-2650329299.commit-5b35da7

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.
@@ -0,0 +1,9 @@
1
+ syntax = "proto3";
2
+
3
+ import "common/id.proto";
4
+ option (ecs_component_id) = 1073;
5
+
6
+ message PBAvatarAttach {
7
+ string avatar_id = 1;
8
+ int32 anchor_point_id = 2;
9
+ }
@@ -0,0 +1,15 @@
1
+ syntax = "proto3";
2
+
3
+ import "common/id.proto";
4
+ option (ecs_component_id) = 1070;
5
+ import "common/Vector3.proto";
6
+
7
+ message PBAvatarModifierArea {
8
+ Vector3 area = 1;
9
+ repeated string exclude_ids = 2;
10
+ repeated Modifier modifiers = 3;
11
+ enum Modifier {
12
+ HIDE_AVATARS = 0;
13
+ DISABLE_PASSPORTS = 1;
14
+ }
15
+ }
@@ -0,0 +1,20 @@
1
+ syntax = "proto3";
2
+
3
+ import "common/id.proto";
4
+ option (ecs_component_id) = 1080;
5
+ import "common/Color3.proto";
6
+
7
+ message PBAvatarShape {
8
+ string id = 1;
9
+ string name = 2;
10
+ string body_shape = 3;
11
+ Color3 skin_color = 4;
12
+ Color3 hair_color = 5;
13
+ Color3 eye_color = 6;
14
+ repeated string wearables = 7;
15
+ string expression_trigger_id = 8;
16
+ int64 expression_trigger_timestamp = 9;
17
+ string sticker_trigger_id = 10;
18
+ int64 sticker_trigger_timestamp = 11;
19
+ bool talking = 12;
20
+ }
@@ -0,0 +1,10 @@
1
+ syntax = "proto3";
2
+
3
+ import "common/id.proto";
4
+ option (ecs_component_id) = 1090;
5
+
6
+ message PBBillboard {
7
+ bool x = 1;
8
+ bool y = 2;
9
+ bool z = 3;
10
+ }
@@ -0,0 +1,14 @@
1
+ syntax = "proto3";
2
+
3
+ import "common/id.proto";
4
+ option (ecs_component_id) = 1071;
5
+ import "common/Vector3.proto";
6
+
7
+ message PBCameraModeArea {
8
+ Vector3 area = 1;
9
+ CameraMode mode = 2;
10
+ enum CameraMode {
11
+ FIRST_PERSON = 0;
12
+ THIRD_PERSON = 1;
13
+ }
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/protocol",
3
- "version": "1.0.0-2624200185.commit-c8884fe",
3
+ "version": "1.0.0-2650329299.commit-5b35da7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -17,5 +17,5 @@
17
17
  "renderer-protocol",
18
18
  "ecs"
19
19
  ],
20
- "commit": "c8884fe1f93f5205f4376c61245e58ddbf2df9e2"
20
+ "commit": "5b35da78677ed4d50b4edaab29e6bc7a24c3253f"
21
21
  }