PlacementState.cs 778 B

1234567891011121314151617181920212223242526272829
  1. namespace UnityEngine.Advertisements
  2. {
  3. /// <summary>
  4. /// The enumerated states of a Unity Ads <a href="../manual/MonetizationPlacements.html">Placement</a>.
  5. /// </summary>
  6. public enum PlacementState
  7. {
  8. /// <summary>
  9. /// The Placement is ready to show ads.
  10. /// </summary>
  11. Ready,
  12. /// <summary>
  13. /// The Placement is not available.
  14. /// </summary>
  15. NotAvailable,
  16. /// <summary>
  17. /// The Placement is disabled.
  18. /// </summary>
  19. Disabled,
  20. /// <summary>
  21. /// The Placement is waiting to be ready.
  22. /// </summary>
  23. Waiting,
  24. /// <summary>
  25. /// The Placement has no ads available to show.
  26. /// </summary>
  27. NoFill
  28. }
  29. }