Files
Caleb Sandford deQuincey 715fb68744 Initial commitment
2025-06-25 11:10:11 +01:00

15 lines
354 B
C#

using UnityEngine;
namespace OccaSoftware.SuperSimpleSkybox.Runtime
{
[ExecuteAlways]
[AddComponentMenu("OccaSoftware/Super Simple Skybox/Sun (Static)")]
public class SunStatic : MonoBehaviour
{
private void Update()
{
Shader.SetGlobalVector(ShaderParams._SunDirection, -transform.forward);
}
}
}