CubemapInputMaterialSlot.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 CubemapInputMaterialSlot : CubemapMaterialSlot
  12. {
  13. [SerializeField]
  14. private SerializableCubemap m_Cubemap = new SerializableCubemap();
  15. public Cubemap cubemap
  16. {
  17. get { return m_Cubemap.cubemap; }
  18. set { m_Cubemap.cubemap = value; }
  19. }
  20. public CubemapInputMaterialSlot()
  21. {}
  22. public CubemapInputMaterialSlot(
  23. int slotId,
  24. string displayName,
  25. string shaderOutputName,
  26. ShaderStageCapability stageCapability = ShaderStageCapability.All,
  27. bool hidden = false)
  28. : base(slotId, displayName, shaderOutputName, SlotType.Input, stageCapability, hidden)
  29. {}
  30. public override VisualElement InstantiateControl()
  31. {
  32. return new CubemapSlotControlView(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 CubemapShaderProperty();
  47. prop.overrideReferenceName = matOwner.GetVariableNameForSlot(id);
  48. prop.modifiable = false;
  49. prop.generatePropertyBlock = true;
  50. prop.value.cubemap = cubemap;
  51. properties.AddShaderProperty(prop);
  52. }
  53. public override void GetPreviewProperties(List<PreviewProperty> properties, string name)
  54. {
  55. var pp = new PreviewProperty(PropertyType.Cubemap)
  56. {
  57. name = name,
  58. cubemapValue = cubemap
  59. };
  60. properties.Add(pp);
  61. }
  62. public override void CopyValuesFrom(MaterialSlot foundSlot)
  63. {
  64. var slot = foundSlot as CubemapInputMaterialSlot;
  65. if (slot != null)
  66. m_Cubemap = slot.m_Cubemap;
  67. }
  68. }
  69. }