Beispiel #1
0
    public static void _showInterstitial()
    {
        AdmobVNTIS_Interstitial ai = (AdmobVNTIS_Interstitial)GameObject.Find("AdmobVNTISInterstitialObject").GetComponent("AdmobVNTIS_Interstitial");

        if (ai != null)
        {
            ai.showInterstitial();
        }
    }
    public static void _showInterstitial()
    {
                #if UNITY_EDITOR
        Debug.Log("AdmobVNTIS_Interstitial._showInterstitial() called");
        return;
                #endif

        if (instance != null)
        {
            instance.showInterstitial();
        }
    }
Beispiel #3
0
 public void ShowInterstitial()
 {
             #if INTERSTITIAL
     my_interstitial.showInterstitial();
             #endif
 }