xyi/Library/PackageCache/com.unity.shadergraph@bd938c0c5e52/Editor/Data/Nodes/IPropertyFromNode.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

11 lines
208 B
C#

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