15 lines
315 B
GDScript
15 lines
315 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
|
|
pass
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
#func _process(delta):
|
|
# pass
|