How do I show FullScreen ad only after 3 deaths of the player?
This is the script I've got
private static readonly Dictionary REVMOB_APP_IDS = new Dictionary() {
{ "Android", "55058fxxa7xb28be4fd378xc"},
{ "IOS", "55058f50xeb28xxxxd378fx" }
};
private RevMob revmob; voidStart(){
RevMobBanner banner = revmob.CreateBanner(RevMob.Position.TOP, 0, 0, 350, 50);
}
void Awake() {
revmob = RevMob.Start(REVMOB_APP_IDS, "Ads");
}
↧