mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-12-25 01:17:10 +01:00
8 lines
198 B
GDScript3
8 lines
198 B
GDScript3
|
extends Label
|
||
|
|
||
|
# Copyright Péter Magyar relintai@gmail.com
|
||
|
# MIT License, might be merged into the Voxelman engine module
|
||
|
|
||
|
func _process(delta):
|
||
|
text = str(Engine.get_frames_per_second()) + "FPS"
|