Files
Caleb Sandford deQuincey e2b97323a3 Started building first moment
2025-10-31 20:33:41 +00:00

12 lines
367 B
C#

using UnityEngine;
namespace OccaSoftware.SuperSimpleSkybox.Runtime
{
internal static class ShaderParams
{
public static int _StarMatrix = Shader.PropertyToID("_MainLightMatrix");
public static int _SunDirection = Shader.PropertyToID("_SunDirection");
public static int _MoonDirection = Shader.PropertyToID("_MoonDirection");
}
}