Files
godot-demo-projects/2d/physics_tests/utils/label_fps.gd
PouleyKetchoupp 8241be5817 Add demo: Physics Tests 2D
Similar to its 3D counterpart, with tests using 2D physics.
2020-12-16 09:11:35 -07:00

6 lines
93 B
GDScript

extends Label
func _process(_delta):
set_text("FPS: %d" % Engine.get_frames_per_second())