@dcl/protocol 1.0.0-3039671530.commit-af8e600 → 1.0.0-3048308847.commit-5f7d537

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.
@@ -24,4 +24,8 @@ message PBAvatarShape {
24
24
  * "urn:decentraland:off-chain:base-avatars:bun_shoes"]
25
25
  */
26
26
  repeated string wearables = 10;
27
+ /**
28
+ * default = []
29
+ */
30
+ repeated string emotes = 11;
27
31
  }
@@ -5,7 +5,21 @@ option (ecs_component_id) = 1052;
5
5
 
6
6
  import "common/Color3.proto";
7
7
 
8
+ enum TextAlign {
9
+ Center = 0;
10
+ Left = 1;
11
+ Right = 2;
12
+ }
13
+
14
+ enum Font {
15
+ LiberationSans = 0;
16
+ SansSerif = 1;
17
+ }
18
+
8
19
  message PBUiText {
9
- string text = 1;
10
- Color3 text_color = 2;
20
+ string value = 1;
21
+ optional Color3 color = 2; // default=(1.0,1.0,1.0)
22
+ optional TextAlign text_align = 3; // default='center'
23
+ optional Font font = 4; // default=0
24
+ optional int32 font_size = 5; // default=10
11
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/protocol",
3
- "version": "1.0.0-3039671530.commit-af8e600",
3
+ "version": "1.0.0-3048308847.commit-5f7d537",
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": "af8e600f96c4dab976b4e5361a914646a827ab8c"
21
+ "commit": "5f7d53705711d65a6bf2f57635e7f24e82d017f8"
22
22
  }
@@ -288,6 +288,8 @@ message PB_AvatarShape {
288
288
 
289
289
  string expressionTriggerId = 12;
290
290
  uint64 expressionTriggerTimestamp = 14;
291
+
292
+ repeated string emotes = 15;
291
293
  }
292
294
 
293
295
  message PB_Wearable {