I have a death counter that each 3 deaths the death resets to 0 and a revmob ad is displayed. but when i reset the level the death count also resets, i tried making it static but it keeps counting after 3 and doesn’t resets.
I thought using PlayerPref but I’m not sure how efficient that is and I didn’t test it, can somebody shed a light upon my problem?
private int death;
death ++;
Debug.Log (death);
if (death == 3) {
revmob.ShowFullscreen ();
death = 0;
The solution is to make it static, if you say that it didn’t reset when you tried it, you should force the reset in any start() method (or in your resetLevel() method, if it exists).
I suggest you make a static class called GlobalVariables and inside this class put the public static int numOfDeaths. Then you could access it from any script this way:
The problem is that the variable is private from the class. It is created again when the class is recreated, so it will always have the same value.
You need something like a gamestate singleton that survives your reloads of the levels. Here is a nice article showing you how to implement it: