Nexus/Library/PackageCache/com.unity.shadergraph@759cfc176571/Editor/Data/Nodes/IPropertyFromNode.cs
2026-01-06 17:23:00 +01:00

11 lines
208 B
C#

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