You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
566 B

2 years ago
using UnityEditor.Graphing;
namespace UnityEditor.ShaderGraph
{
interface IMayRequireVertexSkinning
{
bool RequiresVertexSkinning(ShaderStageCapability stageCapability = ShaderStageCapability.All);
}
static class MayRequireVertexSkinningExtensions
{
public static bool RequiresVertexSkinning(this MaterialSlot slot)
{
var mayRequireVertexSkinning = slot as IMayRequireVertexSkinning;
return mayRequireVertexSkinning != null && mayRequireVertexSkinning.RequiresVertexSkinning();
}
}
}