Ejemplo n.º 1
0
    public static void canCreateFullBanner()
    {
        if (!fullBannerLocked)
        {
            if ((ADSController.lastTimeShowedFullBanner + maxTimeShowFullBanner) < Time.time)
            {
                fullBannerLocked = true;

                instance.StartCoroutine(ADSController.createFullBanner());
            }
        }
    }
Ejemplo n.º 2
0
 void interstitialFailedToReceiveAdEvent(string error)
 {
     StartCoroutine(ADSController.createFullBanner());
 }