您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
21 行
665 B
21 行
665 B
using UnityEditor;
|
|
using UnityEditor.Experimental.AssetImporters;
|
|
using UnityEngine;
|
|
using Debug = System.Diagnostics.Debug;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[CustomEditor(typeof(ShaderSubGraphImporter))]
|
|
public class ShaderSubGraphImporterEditor : ScriptedImporterEditor
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
if (GUILayout.Button("Open Shader Editor"))
|
|
{
|
|
AssetImporter importer = target as AssetImporter;
|
|
Debug.Assert(importer != null, "importer != null");
|
|
ShaderGraphImporterEditor.ShowGraphEditWindow(importer.assetPath);
|
|
}
|
|
}
|
|
}
|
|
}
|