GradientInputMaterialSlot.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEditor.Graphing;
  4. using UnityEditor.ShaderGraph.Drawing.Slots;
  5. using UnityEditor.ShaderGraph.Internal;
  6. using UnityEngine;
  7. using UnityEngine.UIElements;
  8. namespace UnityEditor.ShaderGraph
  9. {
  10. [Serializable]
  11. class GradientInputMaterialSlot : GradientMaterialSlot, IMaterialSlotHasValue<Gradient>
  12. {
  13. [SerializeField]
  14. Gradient m_Value = new Gradient();
  15. [SerializeField]
  16. Gradient m_DefaultValue = new Gradient();
  17. public GradientInputMaterialSlot()
  18. {
  19. }
  20. public GradientInputMaterialSlot(
  21. int slotId,
  22. string displayName,
  23. string shaderOutputName,
  24. ShaderStageCapability stageCapability = ShaderStageCapability.All,
  25. bool hidden = false)
  26. : base(slotId, displayName, shaderOutputName, SlotType.Input, stageCapability, hidden)
  27. {
  28. }
  29. public Gradient value
  30. {
  31. get { return m_Value; }
  32. set { m_Value = value; }
  33. }
  34. public Gradient defaultValue { get { return m_DefaultValue; } }
  35. public override VisualElement InstantiateControl()
  36. {
  37. return new GradientSlotControlView(this);
  38. }
  39. public override string GetDefaultValue(GenerationMode generationMode)
  40. {
  41. var matOwner = owner as AbstractMaterialNode;
  42. if (matOwner == null)
  43. throw new Exception(string.Format("Slot {0} either has no owner, or the owner is not a {1}", this, typeof(AbstractMaterialNode)));
  44. if (generationMode.IsPreview())
  45. return GradientUtil.GetGradientForPreview(matOwner.GetVariableNameForSlot(id));
  46. return ConcreteSlotValueAsVariable();
  47. }
  48. protected override string ConcreteSlotValueAsVariable()
  49. {
  50. return GradientUtil.GetGradientValue(value, "");
  51. }
  52. public override void AddDefaultProperty(PropertyCollector properties, GenerationMode generationMode)
  53. {
  54. var matOwner = owner as AbstractMaterialNode;
  55. if (matOwner == null)
  56. throw new Exception(string.Format("Slot {0} either has no owner, or the owner is not a {1}", this, typeof(AbstractMaterialNode)));
  57. if (generationMode != GenerationMode.Preview)
  58. return;
  59. GradientUtil.GetGradientPropertiesForPreview(properties, matOwner.GetVariableNameForSlot(id), value);
  60. }
  61. public override void GetPreviewProperties(List<PreviewProperty> properties, string name)
  62. {
  63. properties.Add(new PreviewProperty(PropertyType.Gradient)
  64. {
  65. name = name,
  66. gradientValue = value
  67. });
  68. }
  69. public override void CopyValuesFrom(MaterialSlot foundSlot)
  70. {
  71. var slot = foundSlot as GradientInputMaterialSlot;
  72. if (slot != null)
  73. value = slot.value;
  74. }
  75. }
  76. }