@dcl/protocol 1.0.0-3829276743.commit-49cc454 → 1.0.0-3874595169.commit-f6a7e18

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-3829276743.commit-49cc454",
3
+ "version": "1.0.0-3874595169.commit-f6a7e18",
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": "49cc4543f285d8e48e42d5cfa6945effc10bfc0c"
28
+ "commit": "f6a7e1832f1bd3085b5dfbe7e7b1bbb4ea670fd1"
29
29
  }
@@ -14,6 +14,7 @@ enum AvatarAnchorPointType {
14
14
  }
15
15
 
16
16
  message PBAvatarAttach {
17
- string avatar_id = 1;
17
+ // default's to current player avatar id if not provided
18
+ optional string avatar_id = 1;
18
19
  AvatarAnchorPointType anchor_point_id = 2;
19
20
  }
@@ -33,7 +33,7 @@ message PBMaterial {
33
33
  optional decentraland.common.TextureUnion emissive_texture = 5; // default = null
34
34
  optional decentraland.common.TextureUnion bump_texture = 6; // default = null
35
35
 
36
- optional decentraland.common.Color3 albedo_color = 7; // default = white;
36
+ optional decentraland.common.Color4 albedo_color = 7; // default = white;
37
37
  optional decentraland.common.Color3 emissive_color = 8; // default = black;
38
38
  optional decentraland.common.Color3 reflectivity_color = 9; // default = white;
39
39