File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,11 @@ func _unhandled_input(event):
13
13
14
14
15
15
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"
You can’t perform that action at this time.
0 commit comments