private void ad_AdClosed(object sender, InterstitialAdLoadedEventArgs e)
		{
			UnityEngine.WSA.Application.InvokeOnAppThread(()=>
			{
				if (eventCallback != null) eventCallback(InterstitialAdEvents.Canceled, null);
			}, false);
		}
		private void ad_AdClosed(object sender, InterstitialAdLoadedEventArgs e)
		{
			ReignServices.InvokeOnUnityThread(delegate
			{
				if (eventCallback != null) eventCallback(InterstitialAdEvents.Canceled, null);
			});
		}
 private void ad_AdClosed(object sender, InterstitialAdLoadedEventArgs e)
 {
     UnityEngine.WSA.Application.InvokeOnAppThread(() =>
     {
         if (eventCallback != null)
         {
             eventCallback(InterstitialAdEvents.Canceled, null);
         }
     }, false);
 }
Ejemplo n.º 4
0
 private void ad_AdClosed(object sender, InterstitialAdLoadedEventArgs e)
 {
     ReignServices.InvokeOnUnityThread(delegate
     {
         if (eventCallback != null)
         {
             eventCallback(InterstitialAdEvents.Canceled, null);
         }
     });
 }
Ejemplo n.º 5
0
        private void InterstitialAd_adduplex_AdClosed(object sender, InterstitialAdLoadedEventArgs e)
        {
            HockeyClient.Current.TrackEvent("Adduplex Ads cancelled");

            Cancelled?.Invoke();
        }