11 lines
208 B
C#
Raw Normal View History

2025-03-11 15:30:07 +08:00
using UnityEditor.ShaderGraph.Internal;
namespace UnityEditor.ShaderGraph
{
interface IPropertyFromNode
{
AbstractShaderProperty AsShaderProperty();
int outputSlotId { get; }
}
}