Files
Generic/Library/PackageCache/com.unity.shadergraph@608f316e1f48/Editor/Data/Nodes/IPropertyFromNode.cs
2025-04-26 21:54:32 +01:00

11 lines
208 B
C#

using UnityEditor.ShaderGraph.Internal;
namespace UnityEditor.ShaderGraph
{
interface IPropertyFromNode
{
AbstractShaderProperty AsShaderProperty();
int outputSlotId { get; }
}
}