mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-16 13:30:07 +01:00
6 lines
159 B
GDScript
6 lines
159 B
GDScript
extends Label
|
|
|
|
|
|
func _process(_delta: float) -> void:
|
|
text = "%d FPS (%.2f mspf)" % [Engine.get_frames_per_second(), 1000.0 / Engine.get_frames_per_second()]
|