@dcl/protocol 1.0.0-10251908582.commit-a9f17fa → 1.0.0-10256563843.commit-5ea7328
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-
|
|
3
|
+
"version": "1.0.0-10256563843.commit-5ea7328",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": "decentraland/protocol.git",
|
|
6
6
|
"homepage": "https://github.com/decentraland/protocol#readme",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"out-js",
|
|
30
30
|
"public"
|
|
31
31
|
],
|
|
32
|
-
"commit": "
|
|
32
|
+
"commit": "5ea7328925d85ccb120043eb6b7ebc3e092af365"
|
|
33
33
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
package decentraland.sdk.components;
|
|
3
|
+
import "decentraland/common/vectors.proto";
|
|
4
|
+
import "decentraland/sdk/components/common/id.proto";
|
|
5
|
+
import "decentraland/common/texture.proto";
|
|
6
|
+
option (common.ecs_component_id) = 1097;
|
|
7
|
+
|
|
8
|
+
// @deprecated
|
|
9
|
+
// Used internally for the game orchestrator PX, not exposed in the SDK
|
|
10
|
+
message PBMapPin {
|
|
11
|
+
decentraland.common.Vector2 position = 1;
|
|
12
|
+
optional decentraland.common.TextureUnion texture = 2;
|
|
13
|
+
float icon_size = 3;
|
|
14
|
+
string title = 4;
|
|
15
|
+
string description = 5;
|
|
16
|
+
}
|