11 lines
181 B
C#
Raw Normal View History

2025-03-11 15:30:07 +08:00
namespace UnityEditor.ShaderGraph
{
[GenerationAPI]
internal enum StructFieldOptions
{
Static = 0,
Optional = 1 << 0,
Generated = 1 << 1
}
}