OutputResolutionPropertyDrawer.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. using UnityEngine;
  2. namespace UnityEditor.Recorder
  3. {
  4. [CustomPropertyDrawer(typeof(OutputResolution))]
  5. class OutputResolutionPropertyDrawer : PropertyDrawer
  6. {
  7. SerializedProperty m_CustomWidth;
  8. SerializedProperty m_CustomHeight;
  9. SerializedProperty m_ImageHeight;
  10. SerializedProperty m_AspectRatio;
  11. SerializedProperty m_MaxSupportedHeight;
  12. ImageHeightSelector m_HeightSelector;
  13. bool m_Initialized;
  14. static class Styles
  15. {
  16. internal static readonly GUIContent ImageAspectLabel = new GUIContent("Aspect Ratio");
  17. static readonly GUIContent s_CustomWidthLabel = new GUIContent("W");
  18. static readonly GUIContent s_CustomHeightLabel = new GUIContent("H");
  19. internal static readonly GUIContent[] CustomDimensionsLabels = { s_CustomWidthLabel, s_CustomHeightLabel };
  20. }
  21. public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
  22. {
  23. return 0.0f;
  24. }
  25. void Initialize(SerializedProperty property)
  26. {
  27. if (m_Initialized )
  28. return;
  29. m_Initialized = true;
  30. m_CustomWidth = property.FindPropertyRelative("m_CustomWidth");
  31. m_CustomHeight = property.FindPropertyRelative("m_CustomHeight");
  32. m_ImageHeight = property.FindPropertyRelative("imageHeight");
  33. m_AspectRatio = property.FindPropertyRelative("m_AspectRatio");
  34. m_MaxSupportedHeight = property.FindPropertyRelative("maxSupportedHeight");
  35. m_HeightSelector = new ImageHeightSelector(m_MaxSupportedHeight.intValue);
  36. }
  37. public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
  38. {
  39. Initialize(property);
  40. m_ImageHeight.intValue = m_HeightSelector.Popup(label, m_ImageHeight.intValue, m_MaxSupportedHeight.intValue);
  41. var selected = (ImageHeight) m_ImageHeight.intValue;
  42. if (selected == ImageHeight.Custom)
  43. {
  44. var outputDimensions = new int[2];
  45. outputDimensions[0] = m_CustomWidth.intValue;
  46. outputDimensions[1] = m_CustomHeight.intValue;
  47. if (UIElementHelper.MultiIntField(GUIContent.none, Styles.CustomDimensionsLabels, outputDimensions))
  48. {
  49. m_CustomWidth.intValue = outputDimensions[0];
  50. m_CustomHeight.intValue = outputDimensions[1];
  51. }
  52. }
  53. if (selected != ImageHeight.Custom && selected != ImageHeight.Window)
  54. {
  55. EditorGUILayout.PropertyField(m_AspectRatio, Styles.ImageAspectLabel);
  56. }
  57. }
  58. }
  59. }