GradientMaterialSlot.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using UnityEditor.Graphing;
  3. namespace UnityEditor.ShaderGraph
  4. {
  5. [Serializable]
  6. class GradientMaterialSlot : MaterialSlot
  7. {
  8. public GradientMaterialSlot()
  9. {
  10. }
  11. public GradientMaterialSlot(
  12. int slotId,
  13. string displayName,
  14. string shaderOutputName,
  15. SlotType slotType,
  16. ShaderStageCapability stageCapability = ShaderStageCapability.All,
  17. bool hidden = false)
  18. : base(slotId, displayName, shaderOutputName, slotType, stageCapability, hidden)
  19. {
  20. }
  21. public override SlotValueType valueType { get { return SlotValueType.Gradient; } }
  22. public override ConcreteSlotValueType concreteValueType { get { return ConcreteSlotValueType.Gradient; } }
  23. public override void AddDefaultProperty(PropertyCollector properties, GenerationMode generationMode)
  24. {
  25. }
  26. public override void CopyValuesFrom(MaterialSlot foundSlot)
  27. {
  28. }
  29. }
  30. }