StellarXipher/Library/PackageCache/com.unity.shadergraph@d57efd43b1c1/Editor/Data/Nodes/IPropertyFromNode.cs
2025-02-06 16:45:46 -05:00

11 lines
208 B
C#

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