Rasagar/Library/PackageCache/com.unity.shadergraph/Editor/AssetCallbacks/CreateShaderGraph.cs

15 lines
408 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
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();
}
}
}