Files
2025-11-30 08:35:03 +02:00

9 lines
146 B
C#

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