Texture2DArrayInputMaterialSlot.cs 2.8 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 Texture2DArrayInputMaterialSlot : Texture2DArrayMaterialSlot
  12. {
  13. [SerializeField]
  14. private SerializableTextureArray m_TextureArray = new SerializableTextureArray();
  15. public Texture2DArray textureArray
  16. {
  17. get { return m_TextureArray.textureArray; }
  18. set { m_TextureArray.textureArray = value; }
  19. }
  20. public Texture2DArrayInputMaterialSlot()
  21. {}
  22. public Texture2DArrayInputMaterialSlot(
  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 TextureArraySlotControlView(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 Texture2DArrayShaderProperty();
  47. prop.overrideReferenceName = matOwner.GetVariableNameForSlot(id);
  48. prop.modifiable = false;
  49. prop.generatePropertyBlock = true;
  50. prop.value.textureArray = textureArray;
  51. properties.AddShaderProperty(prop);
  52. }
  53. public override void GetPreviewProperties(List<PreviewProperty> properties, string name)
  54. {
  55. var pp = new PreviewProperty(PropertyType.Texture2DArray)
  56. {
  57. name = name,
  58. textureValue = textureArray,
  59. };
  60. properties.Add(pp);
  61. }
  62. public override void CopyValuesFrom(MaterialSlot foundSlot)
  63. {
  64. var slot = foundSlot as Texture2DArrayInputMaterialSlot;
  65. if (slot != null)
  66. m_TextureArray = slot.m_TextureArray;
  67. }
  68. }
  69. }