19 lines
604 B
GDScript
19 lines
604 B
GDScript
extends Control
|
|
|
|
var playTesters = ["Aquamelemele", "Bladen", "BlueDragon", "Borscht", "Craziness", "Deathorous", "Happyday47", "JustTheKing", "Luni", "Maximiliano", "Reallugia97", "ScytherTK", "Supercapnb", "Valcuda", "Verhexen", "Warnerbros", "WolfTK", "ZackvaderXD"]
|
|
|
|
# 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()
|