Files
Bombaleila/Library/PackageCache/com.unity.shadergraph@c8830f61858d/Editor/Generation/Enumerations/KeywordDefinition.cs
2026-03-03 00:39:30 +05:00

12 lines
449 B
C#

namespace UnityEditor.ShaderGraph
{
[GenerationAPI]
internal enum KeywordDefinition
{
ShaderFeature, // adds #pragma shaderfeature for the keyword
MultiCompile, // adds #pragma multicompile for the keyword
Predefined, // does not add ShaderFeature or MultiCompile pragmas, and is forced to be !exposed
DynamicBranch, // adds #pragma dynamic_branch for the keyword
}
}