15 lines
408 B
C#
15 lines
408 B
C#
using UnityEngine;
|
|
using UnityEngine.Rendering;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
static class CreateShaderGraph
|
|
{
|
|
[MenuItem("Assets/Create/Shader Graph/Blank Shader Graph", priority = CoreUtils.Sections.section1 + CoreUtils.Priorities.assetsCreateShaderMenuPriority)]
|
|
public static void CreateBlankShaderGraph()
|
|
{
|
|
GraphUtil.CreateNewGraph();
|
|
}
|
|
}
|
|
}
|