My FPS Counter is in-accurate any ideas why?
问题 When I start up my game it stays around 95-101 rapidly changing, in between all of those numbers.. but when I open up the stats bar I'm getting upper 200's low 300's so wondering why that is still new to c# so be easy on me lol. heres the code thanks in advance as always ^_^. float deltaTime = 0.0f; void Update() { deltaTime += (Time.deltaTime - deltaTime) * 0.1f; } void OnGUI() { int w = Screen.width, h = Screen.height; GUIStyle style = new GUIStyle (); Rect rect = new Rect (0, 0, w, h * 2 /