AspectRatio.cs 990 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace UnityEditor.Recorder
  5. {
  6. [Serializable]
  7. class AspectRatio
  8. {
  9. [SerializeField] float m_CustomAspectX = 1.0f;
  10. [SerializeField] float m_CustomAspectY = 1.0f;
  11. [SerializeField] ImageAspect m_ImageAspect = ImageAspect.x16_9;
  12. internal static readonly Dictionary<ImageAspect, float> s_AspectToValue = new Dictionary<ImageAspect, float>
  13. {
  14. { ImageAspect.x16_9, 16.0f / 9.0f },
  15. { ImageAspect.x16_10, 16.0f / 10.0f },
  16. { ImageAspect.x19_10, 19.0f / 10.0f },
  17. { ImageAspect.x5_4, 5.0f / 4.0f },
  18. { ImageAspect.x4_3, 4.0f / 3.0f },
  19. { ImageAspect.x3_2, 3.0f / 2.0f },
  20. { ImageAspect.x1_1, 1.0f }
  21. };
  22. public float GetAspect()
  23. {
  24. return m_ImageAspect == ImageAspect.Custom ? m_CustomAspectX / m_CustomAspectY : s_AspectToValue[m_ImageAspect];
  25. }
  26. }
  27. }