Files
2026-01-25 11:25:49 +08: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");
}
}