new-horizons/NewHorizons/External/AtmosphereModule.cs
Nick J. Connors 2c3436b303 Added atmo colour + improved star lighting
Only missing proper shader settings
2021-12-31 04:04:05 -05:00

27 lines
822 B
C#

using NewHorizons.Utility;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewHorizons.External
{
public class AtmosphereModule : Module
{
public float Size { get; set; }
public MColor32 CloudTint { get; set; }
public string Cloud { get; set; }
public string CloudCap { get; set; }
public string CloudRamp { get; set; }
public MColor32 FogTint { get; set; }
public float FogDensity { get; set; }
public float FogSize { get; set; }
public bool HasRain { get; set; }
public bool HasSnow { get; set; }
public bool HasOxygen { get; set; }
public bool HasAtmosphere { get; set; }
public MColor32 AtmosphereTint { get; set; }
}
}