You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ParcelView uses a description to render the minimap
60
+
// using a image where each pixel is a parcel and each pixel
61
+
// has the metadata to make a representation (using a shader or image-generation client-side)
62
+
// When `version='v1'`:
63
+
// - The pixel `0,0` is the top-left contained square
64
+
// - The image has to be at least of contained square pixels size
65
+
// - The metadata inside each pixel follows the generated with the atlas server https://github.com/decentraland/atlas-server/blob/af371f2a59745a1f50b0b0b2382984288c4ae891/src/adapters/mini-map-renderer.ts#L27
66
+
messageParcelView {
67
+
// options: `v1`
68
+
stringversion=1;
69
+
optionalstringimage_url=2;
70
+
}
71
+
72
+
optionalImageViewWithZoomLevelsatellite_view=5;
73
+
optionalParcelViewparcel_view=6;
74
+
optionalImageViewWithZoomLevelthumbnail_view=7;
17
75
}
18
76
19
77
messageSkyboxConfiguration {
@@ -26,13 +84,15 @@ message AboutResponse {
26
84
uint32network_id=2;
27
85
repeatedstringglobal_scenes_urn=3;
28
86
repeatedstringscenes_urn=4;
29
-
optionalMinimapConfigurationminimap=5;
87
+
reserved5;
88
+
reserved"minimap";
30
89
optionalSkyboxConfigurationskybox=6;
31
90
32
91
// A content server to be used to load the parcels around the user. Uses the POST /entities/active endpoint
33
92
// to continously fetch the parcels around the users. if null, then the default content server will be used
34
93
// if == "" then the city_loader will be disabled and the scenes_urn will be used to load the world
0 commit comments