15 lines
391 B
GDScript
15 lines
391 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
|
|
add_child(button)
|
|
button.connect("pressed", get_parent().get_parent().get_parent(), "body_part_chosen", [button.text])
|
|
|
|
|
|
func button_pressed(params):
|
|
emit_signal("choose_bodypart", params[0])
|