您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
38 行
961 B
38 行
961 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.Graphing
|
|
{
|
|
[Serializable]
|
|
public class GraphDrawingData : ISerializationCallbackReceiver
|
|
{
|
|
[SerializeField]
|
|
private List<string> m_SerializableSelection = new List<string>();
|
|
|
|
[NonSerialized]
|
|
private List<Guid> m_Selection = new List<Guid>();
|
|
|
|
public IEnumerable<Guid> selection
|
|
{
|
|
get { return m_Selection; }
|
|
set
|
|
{
|
|
m_Selection.Clear();
|
|
m_Selection.AddRange(value);
|
|
}
|
|
}
|
|
|
|
public void OnBeforeSerialize()
|
|
{
|
|
m_SerializableSelection.Clear();
|
|
m_SerializableSelection.AddRange(m_Selection.Select(x => x.ToString()));
|
|
}
|
|
|
|
public void OnAfterDeserialize()
|
|
{
|
|
selection = m_SerializableSelection.Select(x => new Guid(x));
|
|
}
|
|
}
|
|
}
|