mirror of
https://github.com/GarrettGunnell/God-Machine.git
synced 2026-04-18 06:20:21 +00:00
6 lines
187 B
GDScript
6 lines
187 B
GDScript
extends RichTextLabel
|
|
|
|
func _process(delta: float) -> void:
|
|
var current_seed = str(get_node("../../.").neighborhood.spawn_range.x)
|
|
|
|
text = "[center]" + str(current_seed) + "[/center]"
|