@dcl/protocol 1.0.0-3107796726.commit-e8abd68 → 1.0.0-3108096922.commit-054e396

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,10 @@
1
+ syntax = "proto3";
2
+
3
+ import "common/id.proto";
4
+ option (ecs_component_id) = 1053;
5
+
6
+ import "common/Color4.proto";
7
+
8
+ message PBUiStyles {
9
+ optional Color4 background_color = 1; // default=(0.0, 0.0, 0.0, 0.0)
10
+ }
@@ -0,0 +1,8 @@
1
+ syntax = "proto3";
2
+
3
+ message Color4 {
4
+ float r = 1;
5
+ float g = 2;
6
+ float b = 3;
7
+ float a = 4;
8
+ }
@@ -14,7 +14,6 @@ message Packet {
14
14
  Chat chat = 5;
15
15
  Scene scene = 6;
16
16
  Voice voice = 7;
17
- Ping ping = 8;
18
17
  }
19
18
  }
20
19
 
@@ -70,7 +69,3 @@ message Voice {
70
69
  VoiceCodec_OPUS = 0;
71
70
  }
72
71
  }
73
-
74
- message Ping {
75
- uint32 nonce = 1;
76
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/protocol",
3
- "version": "1.0.0-3107796726.commit-e8abd68",
3
+ "version": "1.0.0-3108096922.commit-054e396",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -18,5 +18,5 @@
18
18
  "ecs",
19
19
  "bff"
20
20
  ],
21
- "commit": "e8abd6873962bb56f09b2e22e869f04e85a9b265"
21
+ "commit": "054e396bba1560cdcd26e0a8e1dea03c5f045749"
22
22
  }