Firstborn/Assets/Sky/SunLightPreset.cs
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

25 lines
559 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;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}