[Add] All in one shader

This commit is contained in:
2026-02-23 22:01:07 +07:00
parent ec0aa86ac2
commit 4f942cd7c0
806 changed files with 401510 additions and 33 deletions
@@ -0,0 +1,23 @@
namespace AllIn13DShader
{
public static class ConstantsRuntime
{
//Special Properties
public const string GLOBAL_PROPERTY_GLOBAL_TIME = "allIn13DShader_globalTime";
#if UNITY_EDITOR
public const string SESSION_KEY_ROOT_PLUGIN_PATH = "AllIn13DShader_sessionKey_rootPluginPath";
//Standard Shader
#if ALLIN13DSHADER_BIRP
public const string STANDARD_SHADER_NAME = "Standard";
#elif ALLIN13DSHADER_URP
public const string STANDARD_SHADER_NAME = "Universal Render Pipeline/Lit";
#else
public const string STANDARD_SHADER_NAME = "Standard";
#endif
#endif
}
}