bodypartfighter/BodyConfig/LoadBodyParts.gd
2020-02-01 12:45:12 +01:00

14 lines
306 B
GDScript

extends VBoxContainer
# Called when the node enters the scene tree for the first time.
func _ready():
for entry in BodyPartLoader.bodyparts:
var button = Button.new()
button.text = entry.key
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass