Practice_Unity/Library/PackageCache/com.unity.shadergraph@287dd3fa176c/Editor/Data/Nodes/IPropertyFromNode.cs
2025-09-16 17:30:13 +09:00

11 lines
208 B
C#

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