mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using NewHorizons.External;
|
|
using OWML.Utils;
|
|
using System.Reflection;
|
|
using UnityEngine;
|
|
using NewHorizons.External.Configs;
|
|
using Logger = NewHorizons.Utility.Logger;
|
|
using NewHorizons.Handlers;
|
|
|
|
namespace NewHorizons.Builder.General
|
|
{
|
|
static class MarkerBuilder
|
|
{
|
|
public static void Make(GameObject body, string name, IPlanetConfig config)
|
|
{
|
|
MapMarker mapMarker = body.AddComponent<MapMarker>();
|
|
mapMarker.SetValue("_labelID", (UITextType)TranslationHandler.AddUI(config.Name));
|
|
|
|
var markerType = MapMarker.MarkerType.Planet;
|
|
|
|
if (config.Orbit.IsMoon)
|
|
{
|
|
markerType = MapMarker.MarkerType.Moon;
|
|
}
|
|
else if (config.Star != null)
|
|
{
|
|
markerType = MapMarker.MarkerType.Sun;
|
|
}
|
|
else if (config.FocalPoint != null)
|
|
{
|
|
markerType = MapMarker.MarkerType.HourglassTwins;
|
|
}
|
|
else if(config.Base.IsSatellite)
|
|
{
|
|
markerType = MapMarker.MarkerType.Probe;
|
|
}
|
|
|
|
mapMarker._markerType = markerType;
|
|
}
|
|
}
|
|
}
|