9 lines
187 B
GDScript
9 lines
187 B
GDScript
extends CanvasLayer
|
|
|
|
|
|
@export_group("Internal References")
|
|
@export var _fps_counter: Label
|
|
|
|
|
|
func _process(delta: float) -> void:
|
|
_fps_counter.text = str(Engine.get_frames_per_second())
|