Beispiel #1
0
        private void LoadFailedCallback(CBLocation location, CBImpressionError error)
        {
            ClearLoadCallbacks();

            Debug.LogWarning("Failed to load Chartboost rewarded video: " + error.ToString());

            onFail?.Invoke(error.ToString());
        }
        void OnDidFailToLoadInterstitialStartup(CBLocation arg1, CBImpressionError arg2)
        {
            print("AAChartboost - OnDidFailToLoadInterstitialStartup : error = " + arg2.ToString());
            if (successInterstitialStartup != null)
            {
                successInterstitialStartup(false);
            }

            UnnubscribeInterstitialStartup();
        }
Beispiel #3
0
 void FailToLoadInterstitial(CBLocation location, CBImpressionError error)
 {
     Debug.LogWarning("Ad fail to show at: " + location.ToString() + " with error: " + error.ToString());
 }
        void OnDidFailToLoadInterstitialDefault(CBLocation arg1, CBImpressionError arg2)
        {
            print("AAChartboost - ShowInterstitial - didFailToLoadInterstitial : error = " + arg2.ToString());

            if (successInterstitialDefault != null)
            {
                successInterstitialDefault(false);
            }

            UnnubscribeInterstitialDefault();
        }
 DidFailToLoadRewardedVideo(CBLocation location, CBImpressionError cbImpressionError) =>
 CbError(
     what: "Rewarded video failed to load", location: location.ToString(),
     errorText: cbImpressionError.ToString());
 private void DidFailToLoadInterstitial(CBLocation location, CBImpressionError cbImpressionError) =>
 CbError(
     what: "Interstitial failed to load", location: location.ToString(),
     errorText: cbImpressionError.ToString());