Files
BookRPG/Library/PackageCache/com.unity.shadergraph@6db99422c248/Editor/Data/Nodes/IPropertyFromNode.cs
2026-07-16 21:49:59 +01:00

11 lines
208 B
C#

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