Rasagar/Packages/com.occasoftware.super-simple-skybox/Runtime/ShaderParams.cs
2024-09-01 23:42:24 +03: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");
}
}