Files
stas-barecky/Library/PackageCache/com.unity.shadergraph@3cfe1d1f3f8c/Editor/Generation/Enumerations/KeywordDefinition.cs
2026-01-08 20:43:08 +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
}
}