Rasagar/Packages/com.occasoftware.super-simple-skybox/Runtime/SkyObjects/Moon.cs
2024-09-01 23:42:24 +03:00

15 lines
363 B
C#

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