Large update with mostly rewritten character subsystem

This commit is contained in:
Segey Lapin
2019-10-17 08:48:21 +03:00
parent 6e18c898b4
commit 0945ef76ee
224 changed files with 77854 additions and 13113 deletions

View File

@@ -0,0 +1,14 @@
extends Spatial
var gender = "female"
var skeleton
var test = true
func _ready():
print(characters.accessory_data)
if test:
var hf = MeshInstance.new()
add_child(hf)
var hb = MeshInstance.new()
add_child(hb)
characters.spawn_accessory(hf, "female", "hair", "front_hair1")
characters.spawn_accessory(hb, "female", "hair", "back_hair1")