Nexus/Library/PackageCache/com.unity.shadergraph@759cfc176571/Editor/Data/Graphs/IMaterialSlotHasValue.cs
2026-01-06 17:23:00 +01:00

9 lines
146 B
C#

namespace UnityEditor.ShaderGraph
{
interface IMaterialSlotHasValue<T>
{
T defaultValue { get; }
T value { get; }
}
}