123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- using System;
- using System.Collections.Generic;
- using UnityEditor.Experimental.AssetImporters;
- using UnityEditor.Graphing;
- using UnityEditor.ShaderGraph.Internal;
- using UnityEngine;
- namespace UnityEditor.ShaderGraph
- {
- [Serializable]
- struct FunctionPair
- {
- public string key;
- public string value;
- public FunctionPair(string key, string value)
- {
- this.key = key;
- this.value = value;
- }
- }
-
- class SubGraphAsset : ScriptableObject, ISerializationCallbackReceiver
- {
- public bool isValid;
- public bool isRecursive;
-
- public long processedAt;
- public string functionName;
- public string inputStructName;
- public string hlslName;
- public string assetGuid;
- public ShaderGraphRequirements requirements;
- public string path;
- public List<FunctionPair> functions = new List<FunctionPair>();
- [NonSerialized]
- public List<AbstractShaderProperty> inputs = new List<AbstractShaderProperty>();
-
- [SerializeField]
- List<SerializationHelper.JSONSerializedElement> m_SerializedInputs = new List<SerializationHelper.JSONSerializedElement>();
- [NonSerialized]
- public List<ShaderKeyword> keywords = new List<ShaderKeyword>();
-
- [SerializeField]
- List<SerializationHelper.JSONSerializedElement> m_SerializedKeywords = new List<SerializationHelper.JSONSerializedElement>();
-
- [NonSerialized]
- public List<AbstractShaderProperty> nodeProperties = new List<AbstractShaderProperty>();
-
- [SerializeField]
- List<SerializationHelper.JSONSerializedElement> m_SerializedProperties = new List<SerializationHelper.JSONSerializedElement>();
-
- [NonSerialized]
- public List<MaterialSlot> outputs = new List<MaterialSlot>();
-
- [SerializeField]
- List<SerializationHelper.JSONSerializedElement> m_SerializedOutputs = new List<SerializationHelper.JSONSerializedElement>();
- public List<string> children = new List<string>();
- public List<string> descendents = new List<string>();
- public ShaderStageCapability effectiveShaderStage;
-
- public ConcretePrecision graphPrecision;
- public ConcretePrecision outputPrecision;
-
- public void OnBeforeSerialize()
- {
- m_SerializedInputs = SerializationHelper.Serialize<AbstractShaderProperty>(inputs);
- m_SerializedKeywords = SerializationHelper.Serialize<ShaderKeyword>(keywords);
- m_SerializedProperties = SerializationHelper.Serialize<AbstractShaderProperty>(nodeProperties);
- m_SerializedOutputs = SerializationHelper.Serialize<MaterialSlot>(outputs);
- }
- public void OnAfterDeserialize()
- {
- var typeSerializationInfos = GraphUtil.GetLegacyTypeRemapping();
- inputs = SerializationHelper.Deserialize<AbstractShaderProperty>(m_SerializedInputs, typeSerializationInfos);
- keywords = SerializationHelper.Deserialize<ShaderKeyword>(m_SerializedKeywords, typeSerializationInfos);
- nodeProperties = SerializationHelper.Deserialize<AbstractShaderProperty>(m_SerializedProperties, typeSerializationInfos);
- outputs = SerializationHelper.Deserialize<MaterialSlot>(m_SerializedOutputs, typeSerializationInfos);
- }
- }
- }
|