Rasagar/Library/PackageCache/com.unity.shadergraph/Editor/Data/Nodes/IPropertyFromNode.cs
2024-08-26 23:07:20 +03:00

11 lines
208 B
C#

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