CubemapControl.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using System;
  2. using System.Reflection;
  3. using UnityEngine;
  4. using UnityEditor.UIElements;
  5. using UnityEngine.UIElements;
  6. namespace UnityEditor.ShaderGraph.Drawing.Controls
  7. {
  8. [AttributeUsage(AttributeTargets.Property)]
  9. class CubemapControlAttribute : Attribute, IControlAttribute
  10. {
  11. string m_Label;
  12. public CubemapControlAttribute(string label = null)
  13. {
  14. m_Label = label;
  15. }
  16. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  17. {
  18. return new CubemapControlView(m_Label, node, propertyInfo);
  19. }
  20. }
  21. class CubemapControlView : VisualElement
  22. {
  23. AbstractMaterialNode m_Node;
  24. PropertyInfo m_PropertyInfo;
  25. public CubemapControlView(string label, AbstractMaterialNode node, PropertyInfo propertyInfo)
  26. {
  27. m_Node = node;
  28. m_PropertyInfo = propertyInfo;
  29. if (propertyInfo.PropertyType != typeof(Cubemap))
  30. throw new ArgumentException("Property must be of type Texture.", "propertyInfo");
  31. label = label ?? ObjectNames.NicifyVariableName(propertyInfo.Name);
  32. if (!string.IsNullOrEmpty(label))
  33. Add(new Label(label));
  34. var cubemapField = new ObjectField { value = (Cubemap)m_PropertyInfo.GetValue(m_Node, null), objectType = typeof(Cubemap) };
  35. cubemapField.RegisterValueChangedCallback(OnChange);
  36. Add(cubemapField);
  37. }
  38. void OnChange(ChangeEvent<UnityEngine.Object> evt)
  39. {
  40. m_Node.owner.owner.RegisterCompleteObjectUndo("Cubemap Change");
  41. m_PropertyInfo.SetValue(m_Node, evt.newValue, null);
  42. this.MarkDirtyRepaint();
  43. }
  44. }
  45. }