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.
36 lines
1.2 KiB
36 lines
1.2 KiB
using UnityEngine;
|
|
using UnityEditor.Graphing;
|
|
using UnityEditor.ShaderGraph.Internal;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Title("Input", "Geometry", "Bitangent Vector")]
|
|
class BitangentVectorNode : GeometryNode, IMayRequireBitangent
|
|
{
|
|
public const int kOutputSlotId = 0;
|
|
public const string kOutputSlotName = "Out";
|
|
|
|
public BitangentVectorNode()
|
|
{
|
|
name = "Bitangent Vector";
|
|
synonyms = new string[] { "binormal" };
|
|
UpdateNodeAfterDeserialization();
|
|
}
|
|
|
|
public sealed override void UpdateNodeAfterDeserialization()
|
|
{
|
|
AddSlot(new Vector3MaterialSlot(kOutputSlotId, kOutputSlotName, kOutputSlotName, SlotType.Output, new Vector4(0, 0, 1)));
|
|
RemoveSlotsNameNotMatching(new[] { kOutputSlotId });
|
|
}
|
|
|
|
public override string GetVariableNameForSlot(int slotId)
|
|
{
|
|
return string.Format("IN.{0}", space.ToVariableName(InterpolatorType.BiTangent));
|
|
}
|
|
|
|
public NeededCoordinateSpace RequiresBitangent(ShaderStageCapability stageCapability)
|
|
{
|
|
return space.ToNeededCoordinateSpace();
|
|
}
|
|
}
|
|
}
|