mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
more asteroid belt options
This commit is contained in:
parent
36065fd3a5
commit
da50a41171
@ -1,6 +1,7 @@
|
||||
using NewHorizons.External;
|
||||
using NewHorizons.External.Configs;
|
||||
using NewHorizons.External.Modules;
|
||||
using NewHorizons.External.Modules.Props;
|
||||
using NewHorizons.External.SerializableData;
|
||||
using NewHorizons.Handlers;
|
||||
using NewHorizons.Utility.OWML;
|
||||
@ -36,7 +37,7 @@ namespace NewHorizons.Builder.Body
|
||||
|
||||
config.Base = new BaseModule()
|
||||
{
|
||||
surfaceGravity = 1,
|
||||
surfaceGravity = belt.gravity,
|
||||
surfaceSize = size,
|
||||
gravityFallOff = GravityFallOff.InverseSquared
|
||||
};
|
||||
@ -49,7 +50,8 @@ namespace NewHorizons.Builder.Body
|
||||
trueAnomaly = 360f * (i + Random.Range(-0.2f, 0.2f)) / (float)count,
|
||||
primaryBody = bodyName,
|
||||
semiMajorAxis = Random.Range(belt.innerRadius, belt.outerRadius),
|
||||
showOrbitLine = false
|
||||
showOrbitLine = false,
|
||||
isTidallyLocked = true
|
||||
};
|
||||
|
||||
config.ReferenceFrame = new ReferenceFrameModule()
|
||||
@ -62,8 +64,30 @@ namespace NewHorizons.Builder.Body
|
||||
enabled = false
|
||||
};
|
||||
|
||||
config.ProcGen = belt.procGen;
|
||||
if (config.ProcGen == null)
|
||||
if (belt.assetBundle != null || belt.path != null)
|
||||
{
|
||||
config.Props = new PropModule()
|
||||
{
|
||||
details = new DetailInfo[1]
|
||||
{
|
||||
new DetailInfo()
|
||||
{
|
||||
assetBundle = belt.assetBundle,
|
||||
path = belt.path,
|
||||
scale = size,
|
||||
rotation = belt.randomOrientation ? Random.rotation.eulerAngles : Vector3.zero,
|
||||
keepLoaded = true
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
else if (belt.procGen != null)
|
||||
{
|
||||
config.ProcGen = belt.procGen;
|
||||
config.ProcGen.scale = size;
|
||||
}
|
||||
else
|
||||
{
|
||||
config.ProcGen = new ProcGenModule()
|
||||
{
|
||||
@ -71,11 +95,6 @@ namespace NewHorizons.Builder.Body
|
||||
color = new MColor(126, 94, 73)
|
||||
};
|
||||
}
|
||||
else
|
||||
{
|
||||
// Still update the size
|
||||
config.ProcGen.scale = size;
|
||||
}
|
||||
|
||||
var asteroid = new NewHorizonsBody(config, mod);
|
||||
PlanetCreationHandler.GenerateBody(asteroid);
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
@ -13,7 +13,7 @@ namespace NewHorizons.External.Modules
|
||||
[Range(-1, 200)] [DefaultValue(-1)] public int amount = -1;
|
||||
|
||||
/// <summary>
|
||||
/// Angle between the rings and the equatorial plane of the planet.
|
||||
/// Angle between the belt and the equatorial plane of the planet.
|
||||
/// </summary>
|
||||
public float inclination;
|
||||
|
||||
@ -23,7 +23,7 @@ namespace NewHorizons.External.Modules
|
||||
[Range(0f, double.MaxValue)] public float innerRadius;
|
||||
|
||||
/// <summary>
|
||||
/// Angle defining the point where the rings rise up from the planet's equatorial plane if inclination is nonzero.
|
||||
/// Angle defining the point where the belt rises up from the planet's equatorial plane if inclination is nonzero.
|
||||
/// </summary>
|
||||
public float longitudeOfAscendingNode;
|
||||
|
||||
@ -45,7 +45,7 @@ namespace NewHorizons.External.Modules
|
||||
[Range(0f, double.MaxValue)] public float outerRadius;
|
||||
|
||||
/// <summary>
|
||||
/// How the asteroids are generated
|
||||
/// How the asteroids are generated, unless you supply a detail yourself using "assetBundle" and "path"
|
||||
/// </summary>
|
||||
public ProcGenModule procGen;
|
||||
|
||||
@ -53,5 +53,30 @@ namespace NewHorizons.External.Modules
|
||||
/// Number used to randomize asteroid positions
|
||||
/// </summary>
|
||||
public int randomSeed;
|
||||
|
||||
/// <summary>
|
||||
/// You can use this to load a custom asset or ingame object, instead of using ProcGen. It will be scaled by "minSize" and "maxSize", so ideally it should be near a 1 meter radius.
|
||||
/// This is a relative filepath to an asset-bundle to load the prefab defined in `path` from.
|
||||
/// </summary>
|
||||
public string assetBundle;
|
||||
|
||||
/// <summary>
|
||||
/// You can use this to load a custom asset or ingame object, instead of using ProcGen. It will be scaled by "minSize" and "maxSize", so ideally it should be near a 1 meter radius.
|
||||
/// This is either the path in the scene hierarchy of the item to copy or the path to the object in the supplied asset bundle.
|
||||
/// </summary>
|
||||
public string path;
|
||||
|
||||
/// <summary>
|
||||
/// Surface gravity of the asteroids.
|
||||
/// </summary>
|
||||
[Range(0f, double.MaxValue)]
|
||||
[DefaultValue(1)]
|
||||
public float gravity = 1f;
|
||||
|
||||
/// <summary>
|
||||
/// Should they be randomly oriented, or all pointing towards the center.
|
||||
/// </summary>
|
||||
[DefaultValue(true)]
|
||||
public bool randomOrientation = true;
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user