project_teddy/scripts/playtesters.gd

20 lines
604 B
GDScript3
Raw Normal View History

2023-05-11 11:51:16 -06:00
extends Control
2023-05-19 12:56:34 -06:00
var playTesters = ["Aquamelemele", "Bladen", "BlueDragon", "Borscht", "Craziness", "Deathorous", "Happyday47", "JustTheKing", "Luni", "Maximiliano", "Reallugia97", "ScytherTK", "Supercapnb", "Valcuda", "Verhexen", "Warnerbros", "WolfTK", "ZackvaderXD"]
2023-05-11 11:51:16 -06:00
# 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()