WuhuIslandTesting/Library/PackageCache/com.unity.shadergraph@8148.12.1-8/Editor/Data/Interfaces/IMayRequireVertexID.cs
2025-01-07 02:06:59 +01:00

18 lines
512 B
C#

using UnityEditor.Graphing;
namespace UnityEditor.ShaderGraph
{
interface IMayRequireVertexID
{
bool RequiresVertexID(ShaderStageCapability stageCapability = ShaderStageCapability.All);
}
static class MayRequireVertexIDExtensions
{
public static bool RequiresVertexID(this MaterialSlot slot)
{
var mayRequireVertexID = slot as IMayRequireVertexID;
return mayRequireVertexID != null && mayRequireVertexID.RequiresVertexID();
}
}
}