TurnBasedStrategyCourse/Library/PackageCache/com.unity.shadergraph@16.0.2/Editor/Data/Nodes/IPropertyFromNode.cs

11 lines
208 B
C#

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