Skip to content

Commit

Permalink
release: 20220913 (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
AjimenezDCL authored Sep 14, 2022
1 parent 52c962e commit a54aaa7
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"GUID:692b6c9fa5079416bb81826fb3806890",
"GUID:55e59fab5b4394ec7b7e1960c6f1453f",
"GUID:ddbcaa1d8ce9f489bb115e9daa589565",
"GUID:8ea35c85a2f0dc44788f8c3945cee408"
"GUID:8ea35c85a2f0dc44788f8c3945cee408",
"GUID:0e967802b778d404eac1ca5ea340e290",
"GUID:2f3b53e8380cc4aae947b17780173adb"
],
"includePlatforms": [],
"excludePlatforms": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public override IHUD CreateHUD(HUDElementID hudElementId)
hudElement = new ProfileHUDControllerDesktop(new UserProfileWebInterfaceBridge());
break;
case HUDElementID.MINIMAP:
hudElement = new MinimapHUDControllerDesktop();
hudElement = new MinimapHUDControllerDesktop(MinimapMetadataController.i, new WebInterfaceHomeLocationController());
break;
case HUDElementID.LOADING:
hudElement = new LoadingHUDControllerDesktop();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,11 @@ protected override MinimapHUDView CreateView()
{
return MinimapHUDViewDesktop.Create(this);
}

public MinimapHUDControllerDesktop(MinimapMetadataController minimapMetadataController, IHomeLocationController locationController) : base(minimapMetadataController, locationController)
{
}
public MinimapHUDControllerDesktop(MinimapHUDModel model, MinimapMetadataController minimapMetadataController, IHomeLocationController locationController) : base(model, minimapMetadataController, locationController)
{
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"rootNamespace": "",
"references": [
"GUID:692b6c9fa5079416bb81826fb3806890",
"GUID:b1087c5731ff68448a0a9c625bb7e52d"
"GUID:b1087c5731ff68448a0a9c625bb7e52d",
"GUID:0e967802b778d404eac1ca5ea340e290",
"GUID:2f3b53e8380cc4aae947b17780173adb"
],
"includePlatforms": [],
"excludePlatforms": [],
Expand Down
2 changes: 1 addition & 1 deletion unity-renderer-desktop/Packages/packages-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"com.unity.modules.vr": "1.0.0",
"com.unity.modules.xr": "1.0.0"
},
"hash": "dec78e7fe6669d49f6af87202b3c5d5b5af8880e"
"hash": "c5cb9f8cc6ee66872adb340e3d281aa3df0c425d"
},
"com.decentraland.videoplayer": {
"version": "git+https://github.com/decentraland/DCLVideoPlayerUnity.git?path=Assets#main",
Expand Down
Binary file not shown.

0 comments on commit a54aaa7

Please sign in to comment.