Vector3MaterialSlot.cs 3.3 KB

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