Firstborn/Library/PackageCache/com.unity.shadergraph@12.1.8/Editor/Data/Interfaces/IMayRequireBitangent.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

20 lines
623 B
C#

using UnityEditor.Graphing;
using UnityEditor.ShaderGraph.Internal;
namespace UnityEditor.ShaderGraph
{
interface IMayRequireBitangent
{
NeededCoordinateSpace RequiresBitangent(ShaderStageCapability stageCapability = ShaderStageCapability.All);
}
static class MayRequireBitangentExtensions
{
public static NeededCoordinateSpace RequiresBitangent(this MaterialSlot slot)
{
var mayRequireBitangent = slot as IMayRequireBitangent;
return mayRequireBitangent != null ? mayRequireBitangent.RequiresBitangent() : NeededCoordinateSpace.None;
}
}
}