Texture3DInputMaterialSlot.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 Texture3DInputMaterialSlot : Texture3DMaterialSlot
  12. {
  13. [SerializeField]
  14. private SerializableTexture m_Texture = new SerializableTexture();
  15. public Texture texture
  16. {
  17. get { return m_Texture.texture; }
  18. set { m_Texture.texture = value; }
  19. }
  20. public Texture3DInputMaterialSlot()
  21. {}
  22. public Texture3DInputMaterialSlot(
  23. int slotId,
  24. string displayName,
  25. string shaderOutputName,
  26. ShaderStageCapability shaderStageCapability = ShaderStageCapability.All,
  27. bool hidden = false)
  28. : base(slotId, displayName, shaderOutputName, SlotType.Input, shaderStageCapability, hidden)
  29. {}
  30. public override VisualElement InstantiateControl()
  31. {
  32. return new Texture3DSlotControlView(this);
  33. }
  34. public override string GetDefaultValue(GenerationMode generationMode)
  35. {
  36. var matOwner = owner as AbstractMaterialNode;
  37. if (matOwner == null)
  38. throw new Exception(string.Format("Slot {0} either has no owner, or the owner is not a {1}", this, typeof(AbstractMaterialNode)));
  39. return matOwner.GetVariableNameForSlot(id);
  40. }
  41. public override void AddDefaultProperty(PropertyCollector properties, GenerationMode generationMode)
  42. {
  43. var matOwner = owner as AbstractMaterialNode;
  44. if (matOwner == null)
  45. throw new Exception(string.Format("Slot {0} either has no owner, or the owner is not a {1}", this, typeof(AbstractMaterialNode)));
  46. var prop = new Texture3DShaderProperty();
  47. prop.overrideReferenceName = matOwner.GetVariableNameForSlot(id);
  48. prop.modifiable = false;
  49. prop.generatePropertyBlock = true;
  50. prop.value.texture = texture;
  51. properties.AddShaderProperty(prop);
  52. }
  53. public override void GetPreviewProperties(List<PreviewProperty> properties, string name)
  54. {
  55. var pp = new PreviewProperty(PropertyType.Texture3D)
  56. {
  57. name = name,
  58. textureValue = texture,
  59. };
  60. properties.Add(pp);
  61. }
  62. public override void CopyValuesFrom(MaterialSlot foundSlot)
  63. {
  64. var slot = foundSlot as Texture3DInputMaterialSlot;
  65. if (slot != null)
  66. m_Texture = slot.m_Texture;
  67. }
  68. }
  69. }