2018-12-25 04:00:58 +08:00
|
|
|
namespace Revitalize.Framework.Environment
|
|
|
|
{
|
2019-08-30 10:51:13 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Deals with configurations for darker night.
|
|
|
|
/// </summary>
|
2018-12-25 04:00:58 +08:00
|
|
|
public class DarkerNightConfig
|
|
|
|
{
|
2019-08-30 10:51:13 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Is darker night enabled?
|
|
|
|
/// </summary>
|
2018-12-25 05:00:33 +08:00
|
|
|
public bool Enabled;
|
2019-08-30 10:51:13 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The intensity for how dark it gets at night.
|
|
|
|
/// </summary>
|
2018-12-25 04:00:58 +08:00
|
|
|
public float DarknessIntensity;
|
|
|
|
public DarkerNightConfig()
|
|
|
|
{
|
2018-12-25 05:00:33 +08:00
|
|
|
this.Enabled = true;
|
2018-12-25 04:00:58 +08:00
|
|
|
this.DarknessIntensity = .9f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|