9 lines
146 B
C#
Raw Permalink Normal View History

2025-03-11 15:30:07 +08:00
namespace UnityEditor.ShaderGraph
{
interface IMaterialSlotHasValue<T>
{
T defaultValue { get; }
T value { get; }
}
}