Ei kuvausta
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.

ShowResult.cs 654B

123456789101112131415161718192021
  1. namespace UnityEngine.Advertisements
  2. {
  3. /// <summary>
  4. /// An enum passed to <a href="../api/Advertisements.ShowResult.html">ShowOptions.resultCallback</a> after the ad has finished, indicating the result.
  5. /// </summary>
  6. public enum ShowResult
  7. {
  8. /// <summary>
  9. /// Indicates that the ad failed to display.
  10. /// </summary>
  11. Failed,
  12. /// <summary>
  13. /// Indicates that the player did not allow the ad to complete.
  14. /// </summary>
  15. Skipped,
  16. /// <summary>
  17. /// Indicates that the player watched the ad to completion.
  18. /// </summary>
  19. Finished
  20. }
  21. }