Nick J. Connors 2c3436b303 Added atmo colour + improved star lighting
Only missing proper shader settings
2021-12-31 04:04:05 -05:00

19 lines
482 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 StarModule : Module
{
public float Size { get; set; } = 2000f;
public MColor32 Tint { get; set; }
public MColor32 SolarFlareTint { get; set; }
public MColor32 LightTint { get; set; }
public float SolarLuminosity { get; set; } = 1f;
}
}