您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
23 行
780 B
23 行
780 B
using System.IO;
|
|
using UnityEditor.ProjectWindowCallback;
|
|
using UnityEngine.MaterialGraph;
|
|
|
|
namespace UnityEditor.MaterialGraph
|
|
{
|
|
public class CreateShaderGraph : EndNameEditAction
|
|
{
|
|
[MenuItem("Assets/Create/Shader Graph", false, 208)]
|
|
public static void CreateMaterialGraph()
|
|
{
|
|
ProjectWindowUtil.StartNameEditingIfProjectWindowExists(0, CreateInstance<CreateShaderGraph>(),
|
|
"New Shader Graph.ShaderGraph", null, null);
|
|
}
|
|
|
|
public override void Action(int instanceId, string pathName, string resourceFile)
|
|
{
|
|
var graph = CreateInstance<MaterialGraphAsset>();
|
|
graph.name = Path.GetFileName(pathName);
|
|
AssetDatabase.CreateAsset(graph, pathName);
|
|
}
|
|
}
|
|
}
|