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