Files
AR-Menu/Library/PackageCache/com.unity.shadergraph@0e6324a629e1/Editor/Generation/Enumerations/KeywordDefinition.cs
2025-11-30 08:35:03 +02:00

11 lines
365 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
}
}