Skip to content

Commit b7671c1

Browse files
lazouliosScony
authored andcommitted
Update DiagnosticHud.gd
1 parent e67dad5 commit b7671c1

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

source/match/debug/DiagnosticHud.gd

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,11 @@ func _unhandled_input(event):
1313

1414

1515
func _physics_process(_delta):
16-
_fps_label.text = "{0} FPS".format(["%0.1f" % (Performance.get_monitor(Performance.TIME_FPS))])
16+
_fps_label.text = "{0} FPS \n".format(["%0.1f" % (Performance.get_monitor(Performance.TIME_FPS))])
17+
_fps_label.text += str(OS.get_processor_name()) + " \n"
18+
_fps_label.text += str(OS.get_processor_count()) + " Threads Used \n"
19+
var MBs = OS.get_static_memory_usage()/int(1000000)
20+
_fps_label.text += str(MBs) + " MBs of Memory Used \n"
21+
_fps_label.text += str(RenderingServer.get_video_adapter_name()) + " "
22+
_fps_label.text += str(RenderingServer.get_video_adapter_vendor()) + " \n"
23+
_fps_label.text += "Using " + str(OS.get_name()) + " Operating System"

0 commit comments

Comments
 (0)