No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GraphData0.cs 706B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEditor.Graphing;
  4. namespace UnityEditor.ShaderGraph.Legacy
  5. {
  6. [Serializable]
  7. class GraphData0
  8. {
  9. public List<SerializationHelper.JSONSerializedElement> m_SerializableNodes;
  10. public List<SerializationHelper.JSONSerializedElement> m_SerializableEdges;
  11. public string m_ActiveOutputNodeGuidSerialized;
  12. public List<SerializationHelper.JSONSerializedElement> m_SerializedProperties;
  13. public List<SerializationHelper.JSONSerializedElement> m_SerializedKeywords;
  14. public List<StickyNoteData0> m_StickyNotes;
  15. public List<GroupData0> m_Groups;
  16. public int m_Version = -1;
  17. }
  18. }