KeywordDescriptor.cs 383 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace UnityEditor.ShaderGraph.Internal
  3. {
  4. public struct KeywordDescriptor
  5. {
  6. public string displayName;
  7. public string referenceName;
  8. public KeywordType type;
  9. public KeywordDefinition definition;
  10. public KeywordScope scope;
  11. public int value;
  12. public KeywordEntry[] entries;
  13. }
  14. }