Editor/ShaderGraphPlus/Nodes/Core/IPreRegisterNodeData.cs

Interface used by shader graph nodes to perform work before registration. It declares a PreRegister method that receives a GraphCompiler instance.


namespace ShaderGraphPlus.Nodes;

public interface IPreRegisterNodeData
{
	public void PreRegister( GraphCompiler compiler );
}