bodypartfighter/Global/BodyPartLoader.gd

9 lines
250 B
GDScript3
Raw Normal View History

2020-02-01 12:45:12 +01:00
extends Node
var bodyparts : Dictionary
# Called when the node enters the scene tree for the first time.
func _ready():
bodyparts["Human Arm"] = load("res://BodyParts/HumanArm.tscn")
bodyparts["Human Leg"] = load("res://BodyParts/HumanLeg.tscn")