您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
39 行
1.3 KiB
39 行
1.3 KiB
using UnityEditor.Graphing;
|
|
using UnityEditor.Graphing.Drawing;
|
|
using UnityEngine;
|
|
using UnityEngine.MaterialGraph;
|
|
|
|
namespace UnityEditor.MaterialGraph
|
|
{
|
|
[CustomNodeUI(typeof(SubGraphNode))]
|
|
public class SubgraphNodeUI : AbstractMaterialNodeUI
|
|
{
|
|
public override float GetNodeUiHeight(float width)
|
|
{
|
|
return base.GetNodeUiHeight(width) + EditorGUIUtility.singleLineHeight;
|
|
}
|
|
|
|
public override GUIModificationType Render(Rect area)
|
|
{
|
|
var localNode = node as SubGraphNode;
|
|
if (localNode == null)
|
|
return base.Render(area);
|
|
|
|
EditorGUI.BeginChangeCheck();
|
|
localNode.subGraphAsset = (MaterialSubGraphAsset)EditorGUI.ObjectField(new Rect(area.x, area.y, area.width, EditorGUIUtility.singleLineHeight),
|
|
new GUIContent("SubGraph"),
|
|
localNode.subGraphAsset,
|
|
typeof(MaterialSubGraphAsset), false);
|
|
|
|
var toReturn = GUIModificationType.None;
|
|
|
|
if (EditorGUI.EndChangeCheck())
|
|
toReturn |= GUIModificationType.ModelChanged;
|
|
|
|
area.y += EditorGUIUtility.singleLineHeight;
|
|
area.height -= EditorGUIUtility.singleLineHeight;
|
|
toReturn |= base.Render(area);
|
|
return toReturn;
|
|
}
|
|
}
|
|
}
|