Vector2MaterialSlot.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 Vector2MaterialSlot : MaterialSlot, IMaterialSlotHasValue<Vector2>
  12. {
  13. [SerializeField]
  14. Vector2 m_Value;
  15. [SerializeField]
  16. Vector2 m_DefaultValue = Vector2.zero;
  17. [SerializeField]
  18. string[] m_Labels;
  19. public Vector2MaterialSlot()
  20. {
  21. }
  22. public Vector2MaterialSlot(
  23. int slotId,
  24. string displayName,
  25. string shaderOutputName,
  26. SlotType slotType,
  27. Vector2 value,
  28. ShaderStageCapability stageCapability = ShaderStageCapability.All,
  29. string label1 = "X",
  30. string label2 = "Y",
  31. bool hidden = false)
  32. : base(slotId, displayName, shaderOutputName, slotType, stageCapability, hidden)
  33. {
  34. m_Value = value;
  35. m_Labels = new[] { label1, label2 };
  36. }
  37. public Vector2 defaultValue { get { return m_DefaultValue; } }
  38. public Vector2 value
  39. {
  40. get { return m_Value; }
  41. set { m_Value = value; }
  42. }
  43. public override VisualElement InstantiateControl()
  44. {
  45. return new MultiFloatSlotControlView(owner, m_Labels, () => value, (newValue) => value = newValue);
  46. }
  47. protected override string ConcreteSlotValueAsVariable()
  48. {
  49. return string.Format("$precision2 ({0}, {1})"
  50. , NodeUtils.FloatToShaderValue(value.x)
  51. , NodeUtils.FloatToShaderValue(value.y));
  52. }
  53. public override void AddDefaultProperty(PropertyCollector properties, GenerationMode generationMode)
  54. {
  55. if (!generationMode.IsPreview())
  56. return;
  57. var matOwner = owner as AbstractMaterialNode;
  58. if (matOwner == null)
  59. throw new Exception(string.Format("Slot {0} either has no owner, or the owner is not a {1}", this, typeof(AbstractMaterialNode)));
  60. var property = new Vector2ShaderProperty
  61. {
  62. overrideReferenceName = matOwner.GetVariableNameForSlot(id),
  63. generatePropertyBlock = false,
  64. value = value
  65. };
  66. properties.AddShaderProperty(property);
  67. }
  68. public override void GetPreviewProperties(List<PreviewProperty> properties, string name)
  69. {
  70. var pp = new PreviewProperty(PropertyType.Vector2)
  71. {
  72. name = name,
  73. vector4Value = new Vector4(value.x, value.y, 0, 0),
  74. };
  75. properties.Add(pp);
  76. }
  77. public override SlotValueType valueType { get { return SlotValueType.Vector2; } }
  78. public override ConcreteSlotValueType concreteValueType { get { return ConcreteSlotValueType.Vector2; } }
  79. public override void CopyValuesFrom(MaterialSlot foundSlot)
  80. {
  81. var slot = foundSlot as Vector2MaterialSlot;
  82. if (slot != null)
  83. value = slot.value;
  84. }
  85. }
  86. }