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
Post a Comment