PreloadAdForZoneID() public static method

public static PreloadAdForZoneID ( string zoneId ) : void
zoneId string
return void
Example #1
0
    public void ShowBonusCoinAd()
    {
        bcAd = true;

        int index = (int)ZoneOffset.zoneBonusCoin;

        FuseSDK.PreloadAdForZoneID(zoneIDS[index]);

        FuseSDK.ShowAdForZoneID(zoneIDS[index]);
    }
Example #2
0
    public void ShowDoubleCoinAd()
    {
        dcAd = true;
        target.StopRun();

        int index = (int)ZoneOffset.zoneDoubleCoin;

        FuseSDK.PreloadAdForZoneID(zoneIDS[index]);

        FuseSDK.ShowAdForZoneID(zoneIDS[index]);
    }
Example #3
0
    public void ShowExtraLifeAd()
    {
        extraAd = true;
        target.StopRun();

        int index = (int)ZoneOffset.zoneExtraAd;

        FuseSDK.PreloadAdForZoneID(zoneIDS[index]);

        FuseSDK.ShowAdForZoneID(zoneIDS[index]);
    }