설명 없음
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.

UnityAdsShowError.cs 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. namespace UnityEngine.Advertisements {
  2. /// <summary>
  3. /// The enumerated causes of an ad failing to show.
  4. /// </summary>
  5. public enum UnityAdsShowError {
  6. /// <summary>
  7. /// The SDK is not properly initialized.
  8. /// </summary>
  9. NOT_INITIALIZED,
  10. /// <summary>
  11. /// The Placement was not ready to show an ad.
  12. /// </summary>
  13. NOT_READY,
  14. /// <summary>
  15. /// An error occured related to the media player.
  16. /// </summary>
  17. VIDEO_PLAYER_ERROR,
  18. /// <summary>
  19. /// Show failed due to invalid parameters.
  20. /// </summary>
  21. INVALID_ARGUMENT,
  22. /// <summary>
  23. /// An error occured due to the device's internet connection.
  24. /// </summary>
  25. NO_CONNECTION,
  26. /// <summary>
  27. /// An ad is already showing in the specified Placement.
  28. /// </summary>
  29. ALREADY_SHOWING,
  30. /// <summary>
  31. /// An internal Unity Ads service error occurred.
  32. /// </summary>
  33. INTERNAL_ERROR,
  34. /// <summary>
  35. /// An unknown error occurred.
  36. /// </summary>
  37. UNKNOWN
  38. }
  39. }