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

9 lines
146 B
C#

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