KeywordEntry.cs 770 B

123456789101112131415161718192021222324252627
  1. using System;
  2. namespace UnityEditor.ShaderGraph.Internal
  3. {
  4. [Serializable]
  5. public struct KeywordEntry
  6. {
  7. public int id; // Used to determine what MaterialSlot an entry belongs to
  8. public string displayName;
  9. public string referenceName;
  10. // In this case, we will handle the actual IDs later
  11. public KeywordEntry(string displayName, string referenceName)
  12. {
  13. this.id = -1;
  14. this.displayName = displayName;
  15. this.referenceName = referenceName;
  16. }
  17. internal KeywordEntry(int id, string displayName, string referenceName)
  18. {
  19. this.id = id;
  20. this.displayName = displayName;
  21. this.referenceName = referenceName;
  22. }
  23. }
  24. }