Ingen beskrivning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BannerPosition.cs 1.1KB

12345678910111213141516171819202122232425262728293031323334353637
  1. namespace UnityEngine.Advertisements
  2. {
  3. /// <summary>
  4. /// An enum representing the on-screen anchor position of the banner ad.
  5. /// </summary>
  6. public enum BannerPosition
  7. {
  8. /// <summary>
  9. /// Anchor the banner in the top-left corner of the screen.
  10. /// </summary>
  11. TOP_LEFT,
  12. /// <summary>
  13. /// Anchor the banner in the top-center of the screen.
  14. /// </summary>
  15. TOP_CENTER,
  16. /// <summary>
  17. /// Anchor the banner in the top-right corner of the screen.
  18. /// </summary>
  19. TOP_RIGHT,
  20. /// <summary>
  21. /// Anchor the banner in the bottom-left corner of the screen.
  22. /// </summary>
  23. BOTTOM_LEFT,
  24. /// <summary>
  25. /// Anchor the banner in the bottom-center of the screen.
  26. /// </summary>
  27. BOTTOM_CENTER,
  28. /// <summary>
  29. /// Anchor the banner in the bottom-right corner of the screen.
  30. /// </summary>
  31. BOTTOM_RIGHT,
  32. /// <summary>
  33. /// Anchor the banner in the center of the screen.
  34. /// </summary>
  35. CENTER
  36. }
  37. }