Godot version of Conway's game of life
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

10 lines
226 B

extends Label
@export var include_label: bool = true
@onready var label_prepend: String = "FPS: " if include_label else ""
func _process(_delta: float) -> void:
text = label_prepend + str(Engine.get_frames_per_second())