SubGraphAsset.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEditor.Experimental.AssetImporters;
  4. using UnityEditor.Graphing;
  5. using UnityEditor.ShaderGraph.Internal;
  6. using UnityEngine;
  7. namespace UnityEditor.ShaderGraph
  8. {
  9. [Serializable]
  10. struct FunctionPair
  11. {
  12. public string key;
  13. public string value;
  14. public FunctionPair(string key, string value)
  15. {
  16. this.key = key;
  17. this.value = value;
  18. }
  19. }
  20. class SubGraphAsset : ScriptableObject, ISerializationCallbackReceiver
  21. {
  22. public bool isValid;
  23. public bool isRecursive;
  24. public long processedAt;
  25. public string functionName;
  26. public string inputStructName;
  27. public string hlslName;
  28. public string assetGuid;
  29. public ShaderGraphRequirements requirements;
  30. public string path;
  31. public List<FunctionPair> functions = new List<FunctionPair>();
  32. [NonSerialized]
  33. public List<AbstractShaderProperty> inputs = new List<AbstractShaderProperty>();
  34. [SerializeField]
  35. List<SerializationHelper.JSONSerializedElement> m_SerializedInputs = new List<SerializationHelper.JSONSerializedElement>();
  36. [NonSerialized]
  37. public List<ShaderKeyword> keywords = new List<ShaderKeyword>();
  38. [SerializeField]
  39. List<SerializationHelper.JSONSerializedElement> m_SerializedKeywords = new List<SerializationHelper.JSONSerializedElement>();
  40. [NonSerialized]
  41. public List<AbstractShaderProperty> nodeProperties = new List<AbstractShaderProperty>();
  42. [SerializeField]
  43. List<SerializationHelper.JSONSerializedElement> m_SerializedProperties = new List<SerializationHelper.JSONSerializedElement>();
  44. [NonSerialized]
  45. public List<MaterialSlot> outputs = new List<MaterialSlot>();
  46. [SerializeField]
  47. List<SerializationHelper.JSONSerializedElement> m_SerializedOutputs = new List<SerializationHelper.JSONSerializedElement>();
  48. public List<string> children = new List<string>();
  49. public List<string> descendents = new List<string>();
  50. public ShaderStageCapability effectiveShaderStage;
  51. public ConcretePrecision graphPrecision;
  52. public ConcretePrecision outputPrecision;
  53. public void OnBeforeSerialize()
  54. {
  55. m_SerializedInputs = SerializationHelper.Serialize<AbstractShaderProperty>(inputs);
  56. m_SerializedKeywords = SerializationHelper.Serialize<ShaderKeyword>(keywords);
  57. m_SerializedProperties = SerializationHelper.Serialize<AbstractShaderProperty>(nodeProperties);
  58. m_SerializedOutputs = SerializationHelper.Serialize<MaterialSlot>(outputs);
  59. }
  60. public void OnAfterDeserialize()
  61. {
  62. var typeSerializationInfos = GraphUtil.GetLegacyTypeRemapping();
  63. inputs = SerializationHelper.Deserialize<AbstractShaderProperty>(m_SerializedInputs, typeSerializationInfos);
  64. keywords = SerializationHelper.Deserialize<ShaderKeyword>(m_SerializedKeywords, typeSerializationInfos);
  65. nodeProperties = SerializationHelper.Deserialize<AbstractShaderProperty>(m_SerializedProperties, typeSerializationInfos);
  66. outputs = SerializationHelper.Deserialize<MaterialSlot>(m_SerializedOutputs, typeSerializationInfos);
  67. }
  68. }
  69. }