Firstborn/Assets/Sky/SunLightPreset.cs
Schaken-Mods ca9718144f Update 4/24/23
Fixed the extra hair, Overhauled the Environment Manager, Removed Save Bloat, Added Loading Screen before Character Menu.
2023-04-24 17:54:43 -05:00

26 lines
596 B
C#

using System.Security.AccessControl;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
[CreateAssetMenu(fileName="Lighting Preset", menuName="Scriptables/Lighting Preset", order = 1)]
public class SunLightPreset : ScriptableObject
{
public Gradient AmbientColor;
public Gradient DirectionalColor;
public Gradient FogColor;
public Gradient StarsVisability;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}