2021-06-25 07:50:12 -04:00

11 lines
181 B
C#

namespace UnityEditor.ShaderGraph
{
[GenerationAPI]
internal enum StructFieldOptions
{
Static = 0,
Optional = 1 << 0,
Generated = 1 << 1
}
}