unity3d - Unity analytics wrong report -


i use code testing unity analytics:

void testanalytic() {     int count = playerprefs.getint("testcounter", 0);     analytics.customevent("test", new dictionary<string, object>         {             {"count",count}         });     count++;     playerprefs.setint("testcounter", count); }  

and called method 5 times. unity analytic report event 8 times , "count" show 1 number (4) , (others).
why happen?


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -