xyi/Library/PackageCache/com.unity.shadergraph@bd938c0c5e52/Editor/Data/Interfaces/IMayRequireVertexID.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03: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();
}
}
}