Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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. }