mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
34 lines
877 B
C#
34 lines
877 B
C#
using System.ComponentModel;
|
|
|
|
namespace NewHorizons.External.Configs
|
|
{
|
|
public class StarSystemConfig
|
|
{
|
|
public string subtitle;
|
|
|
|
[DefaultValue(true)] public bool canEnterViaWarpDrive = true;
|
|
[DefaultValue(true)] public bool enableTimeLoop = true;
|
|
[DefaultValue(true)] public bool destroyStockPlanets = true;
|
|
|
|
public bool startHere;
|
|
public string factRequiredForWarp;
|
|
public bool mapRestricted;
|
|
public NomaiCoordinates coords;
|
|
public SkyboxConfig skybox;
|
|
|
|
public class NomaiCoordinates
|
|
{
|
|
public int[] x;
|
|
public int[] y;
|
|
public int[] z;
|
|
}
|
|
|
|
public class SkyboxConfig
|
|
{
|
|
public string assetBundle = null;
|
|
public string path = null;
|
|
public bool destroyStarField = false;
|
|
}
|
|
}
|
|
}
|