2022-05-22 21:30:45 -04:00

39 lines
993 B
C#

#region
using System.ComponentModel.DataAnnotations;
using NewHorizons.Utility;
using Newtonsoft.Json;
#endregion
namespace NewHorizons.External.Modules
{
[JsonObject]
public class HeightMapModule
{
/// <summary>
/// Relative filepath to the texture used for the terrain height.
/// </summary>
public string heightMap;
/// <summary>
/// The highest points on your planet will be at this height.
/// </summary>
[Range(0f, double.MaxValue)] public float maxHeight;
/// <summary>
/// The lowest points on your planet will be at this height.
/// </summary>
[Range(0f, double.MaxValue)] public float minHeight;
/// <summary>
/// The scale of the terrain.
/// </summary>
public MVector3 stretch;
/// <summary>
/// Relative filepath to the texture used for the terrain.
/// </summary>
public string textureMap;
}
}