Files
2026-01-25 11:25:49 +08:00

15 lines
360 B
C#

using UnityEngine;
namespace OccaSoftware.SuperSimpleSkybox.Runtime
{
[AddComponentMenu("OccaSoftware/Super Simple Skybox/Sun")]
public class Sun : DirectionalLight
{
protected override void Update()
{
base.Update();
Shader.SetGlobalVector(ShaderParams._SunDirection, -transform.forward);
}
}
}