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