Files
AR-Menu/Library/PackageCache/com.unity.shadergraph@0e6324a629e1/Editor/Data/Interfaces/IMayRequireVertexID.cs
2025-11-30 08:35:03 +02:00

19 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();
}
}
}