您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
44 行
1.4 KiB
44 行
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEditor.Experimental.UIElements.GraphView;
|
|
using UnityEngine;
|
|
using UnityEngine.MaterialGraph;
|
|
|
|
namespace UnityEditor.MaterialGraph.Drawing
|
|
{
|
|
/* [Serializable]
|
|
class RemapMasterControlPresenter : GraphControlPresenter
|
|
{
|
|
public override void OnGUIHandler()
|
|
{
|
|
base.OnGUIHandler();
|
|
|
|
var remapNode = node as RemapMasterNode;
|
|
if (remapNode == null)
|
|
return;
|
|
|
|
remapNode.remapAsset = (MaterialRemapAsset)EditorGUILayout.MiniThumbnailObjectField(
|
|
new GUIContent("Remap Asset"),
|
|
remapNode.remapAsset,
|
|
typeof(MaterialRemapAsset), null);
|
|
}
|
|
|
|
public override float GetHeight()
|
|
{
|
|
return EditorGUIUtility.singleLineHeight + 2 * EditorGUIUtility.standardVerticalSpacing;
|
|
}
|
|
}
|
|
|
|
[Serializable]
|
|
public class RemapMasterNodePresenter : MasterNodePresenter
|
|
{
|
|
protected override IEnumerable<GraphControlPresenter> GetControlData()
|
|
{
|
|
var instance = CreateInstance<RemapMasterControlPresenter>();
|
|
instance.Initialize(node);
|
|
var controls = new List<GraphControlPresenter>(base.GetControlData());
|
|
controls.Add(instance);
|
|
return controls;
|
|
}
|
|
}*/
|
|
}
|