using System; using UnityEditor.ShaderGraph.Drawing.Slots; using UnityEngine.Experimental.UIElements; namespace UnityEditor.ShaderGraph { [Serializable] public class NormalMaterialSlot : SpaceMaterialSlot, IMayRequireNormal { public NormalMaterialSlot() {} public NormalMaterialSlot(int slotId, string displayName, string shaderOutputName, CoordinateSpace space, ShaderStageCapability stageCapability = ShaderStageCapability.All, bool hidden = false) : base(slotId, displayName, shaderOutputName, space, stageCapability, hidden) {} public override VisualElement InstantiateControl() { return new LabelSlotControlView(space + " Space"); } public override string GetDefaultValue(GenerationMode generationMode) { return string.Format("IN.{0}", space.ToVariableName(InterpolatorType.Normal)); } public NeededCoordinateSpace RequiresNormal(ShaderStageCapability stageCapability) { if (isConnected) return NeededCoordinateSpace.None; return space.ToNeededCoordinateSpace(); } } }