Matrix2MaterialSlot.cs 2.8 KB

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