ShowAdForZoneID() public static method

public static ShowAdForZoneID ( String zoneId, string>.Dictionary options = null ) : void
zoneId String
options string>.Dictionary
return void
Esempio n. 1
0
    public void ShowBonusCoinAd()
    {
        bcAd = true;

        int index = (int)ZoneOffset.zoneBonusCoin;

        FuseSDK.PreloadAdForZoneID(zoneIDS[index]);

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

        int index = (int)ZoneOffset.zoneDoubleCoin;

        FuseSDK.PreloadAdForZoneID(zoneIDS[index]);

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

        int index = (int)ZoneOffset.zoneExtraAd;

        FuseSDK.PreloadAdForZoneID(zoneIDS[index]);

        FuseSDK.ShowAdForZoneID(zoneIDS[index]);
    }