-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated manifest and packages-lock * fixed path for unity-renderer * aligned package-lock for RPC; adapted MinimapHUDDesktop to the changed signature in the interface * pointed to the release merge to main from unity-renderer
- Loading branch information
Showing
5 changed files
with
24 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 14 additions & 10 deletions
24
...top/Assets/Scripts/MainScripts/DCL/Controllers/HUD/Minimap/MinimapHUDControllerDesktop.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
using UnityEngine; | ||
|
||
public class MinimapHUDControllerDesktop : MinimapHUDController | ||
namespace DCL.Controllers.HUD | ||
{ | ||
protected override MinimapHUDView CreateView() | ||
public class MinimapHUDControllerDesktop : MinimapHUDController | ||
{ | ||
return MinimapHUDViewDesktop.Create(this); | ||
} | ||
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) | ||
{ | ||
public MinimapHUDControllerDesktop(MinimapMetadataController minimapMetadataController, IHomeLocationController locationController, global::DCL.Environment.Model environment) | ||
: base(minimapMetadataController, locationController, environment) | ||
{ | ||
} | ||
public MinimapHUDControllerDesktop(MinimapHUDModel model, MinimapMetadataController minimapMetadataController, IHomeLocationController locationController, global::DCL.Environment.Model environment) | ||
: base(model, minimapMetadataController, locationController, environment) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters