Editor/ShaderGraphPlus/Nodes/Core/DummyNode.cs

A minimal editor-only shader graph node class named DummyNode. It inherits from ShaderNodePlus and is marked Hide, intended as a placeholder when an error should not present a clickable node in the graph editor.

using NodeEditorPlus;

namespace ShaderGraphPlus;

/// <summary>
/// Dummy node ment for situations where an error needs to not have a node you can clock to.
/// </summary>
[Hide]
internal sealed class DummyNode : ShaderNodePlus
{
}