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

UnityAdsCompletionState.cs 470B

123456789101112131415161718
  1. namespace UnityEngine.Advertisements {
  2. public enum UnityAdsCompletionState {
  3. /// <summary>
  4. /// A state that indicates that the user skipped the ad.
  5. /// </summary>
  6. SKIPPED,
  7. /// <summary>
  8. /// A state that indicates that the ad was played entirely.
  9. /// </summary>
  10. COMPLETED,
  11. /// <summary>
  12. /// Default value / Used when no mapping available
  13. /// </summary>
  14. UNKNOWN
  15. }
  16. }