您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
63 行
1.7 KiB
63 行
1.7 KiB
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Serializable]
|
|
class SerializableTextureArray : ISerializationCallbackReceiver
|
|
{
|
|
[SerializeField]
|
|
string m_SerializedTexture;
|
|
|
|
[SerializeField]
|
|
string m_Guid;
|
|
|
|
[NonSerialized]
|
|
Texture2DArray m_TextureArray;
|
|
|
|
[Serializable]
|
|
class TextureHelper
|
|
{
|
|
#pragma warning disable 649
|
|
public Texture2DArray textureArray;
|
|
#pragma warning restore 649
|
|
}
|
|
|
|
public Texture2DArray textureArray
|
|
{
|
|
get
|
|
{
|
|
if (!string.IsNullOrEmpty(m_SerializedTexture))
|
|
{
|
|
var textureHelper = new TextureHelper();
|
|
EditorJsonUtility.FromJsonOverwrite(m_SerializedTexture, textureHelper);
|
|
m_SerializedTexture = null;
|
|
m_Guid = null;
|
|
m_TextureArray = textureHelper.textureArray;
|
|
}
|
|
else if (!string.IsNullOrEmpty(m_Guid) && m_TextureArray == null)
|
|
{
|
|
m_TextureArray = AssetDatabase.LoadAssetAtPath<Texture2DArray>(AssetDatabase.GUIDToAssetPath(m_Guid));
|
|
m_Guid = null;
|
|
}
|
|
|
|
return m_TextureArray;
|
|
}
|
|
set
|
|
{
|
|
m_TextureArray = value;
|
|
m_Guid = null;
|
|
m_SerializedTexture = null;
|
|
}
|
|
}
|
|
|
|
public void OnBeforeSerialize()
|
|
{
|
|
m_SerializedTexture = EditorJsonUtility.ToJson(new TextureHelper { textureArray = textureArray }, false);
|
|
}
|
|
|
|
public void OnAfterDeserialize()
|
|
{
|
|
}
|
|
}
|
|
}
|