using System.ComponentModel;
using Newtonsoft.Json;
namespace NewHorizons.External.Modules
{
[JsonObject]
public class AsteroidBeltModule
{
///
/// Amount of asteroids to create.
///
[DefaultValue(-1)] public int amount = -1;
///
/// Angle between the rings and the equatorial plane of the planet.
///
public float inclination;
///
/// Lowest distance from the planet asteroids can spawn
///
public float innerRadius;
///
/// Angle defining the point where the rings rise up from the planet's equatorial plane if inclination is nonzero.
///
public float longitudeOfAscendingNode;
///
/// Maximum size of the asteroids.
///
[DefaultValue(50)] public float maxSize = 50f;
///
/// Minimum size of the asteroids.
///
[DefaultValue(20)] public float minSize = 20;
///
/// Greatest distance from the planet asteroids can spawn
///
public float outerRadius;
///
/// How the asteroids are generated
///
public ProcGenModule procGen;
///
/// Number used to randomize asteroid positions
///
public int randomSeed;
}
}