forked from SilverStudioGames/WTS
LoafyLemon
3762ba8fb1
* Fixed 'decorator' achievement being unreachable * Fixed character face initialization in the case character image was never called before with facial values * Fixed saybox disappearing for anonymous narrator calls * Fixed inner thought fade not working with text tags
20 lines
656 B
Plaintext
20 lines
656 B
Plaintext
# To add new doll character just add it to this named set inside your mod file
|
|
init offset = 2
|
|
init python:
|
|
def wardrobe_init():
|
|
for c in CHARACTERS:
|
|
char = get_character_object(c)
|
|
|
|
body_default = get_character_body(c, type="default")
|
|
char.equip(body_default)
|
|
|
|
outfit_default = get_character_outfit(c, type="default")
|
|
char.equip(outfit_default)
|
|
|
|
outfit_last = outfit = get_character_outfit(c, type="last")
|
|
outfit_last.save()
|
|
|
|
char.set_face(mouth="base", eyes="base", eyebrows="base", pupils="mid")
|
|
|
|
config.start_callbacks.append(wardrobe_init)
|