您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
31 行
653 B
31 行
653 B
using System;
|
|
using RMGUI.GraphView;
|
|
using UnityEngine;
|
|
using UnityEngine.Graphing;
|
|
|
|
namespace UnityEditor.Graphing.Drawing
|
|
{
|
|
[Serializable]
|
|
public abstract class ControlDrawData : GraphElementData
|
|
{
|
|
public INode node { get; private set; }
|
|
|
|
protected ControlDrawData()
|
|
{}
|
|
|
|
public void Initialize(INode inNode)
|
|
{
|
|
node = inNode;
|
|
}
|
|
|
|
public virtual void OnGUIHandler()
|
|
{
|
|
if (node == null)
|
|
return;
|
|
|
|
GUIUtility.GetControlID(node.guid.GetHashCode(), FocusType.Passive);
|
|
}
|
|
|
|
public abstract float GetHeight();
|
|
}
|
|
}
|