- extends Label
- # Declare member variables here. Examples:
- # var a = 2
- # var b = "text"
- # Called when the node enters the scene tree for the first time.
- func _ready():
- update_generation(0)
- func update_generation (generation):
- text = "GENERATION: " + str(generation)
|