private void SDKStartedCallback(string message) { PlayAdsSDK.ready = true; PlayAdsSDK.initializing = false; if (!string.IsNullOrEmpty(PlayAdsSDK.waitingAction)) { if (ACTION_CACHE.Equals(PlayAdsSDK.waitingAction)) { PlayAdsSDK.Cache(PlayAdsSDK.waitingType); } else if (ACTION_SHOW.Equals(PlayAdsSDK.waitingAction)) { PlayAdsSDK.Show(PlayAdsSDK.waitingType); } PlayAdsSDK.waitingAction = null; } }
/// <summary> /// Shows a synchronoys interstitial (blocking the screen) /// </summary> public void PlayAds_Show() { PlayAdsSDK.Show(); }
/// <summary> /// Shows a synchronoys interstitial (blocking the screen) /// </summary> private void PlayAds_Show() { PlayAdsSDK.Show(); }
public static void Show() { PlayAdsSDK.Show(InterstitialType.Smart); }
public static void Show() { PlayAdsSDK.Show(AdType.Smart); }