Texture2DInputMaterialSlot.cs 3.0 KB

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