20 lines
487 B
GDScript3
20 lines
487 B
GDScript3
|
extends Control
|
||
|
|
||
|
var playTesters = ["Aquamelemele", "Bladen", "BlueDragon", "Borscht", "Deathorous", "Happyday47", "Maximiliano", "Valcuda", "Verhexen"]
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready():
|
||
|
var text = ""
|
||
|
for string in playTesters:
|
||
|
text += string + "\n"
|
||
|
$TextEdit.set_text(text)
|
||
|
|
||
|
|
||
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||
|
func _process(delta):
|
||
|
pass
|
||
|
|
||
|
|
||
|
func _on_close_button_pressed():
|
||
|
self.queue_free()
|