14 lines
306 B
GDScript
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
|