VR4Medical/ICI/Library/PackageCache/com.unity.shadergraph@e5d3455aa133/Editor/Data/Nodes/IPropertyFromNode.cs
2025-07-29 13:45:50 +03:00

11 lines
208 B
C#

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