This is a snippet of my layered image setup, which is basic since I'm just testing things out. I'm still trying to wrap my head around how variants work.
Code: Select all
layeredimage merritt:
always "merritt_base"
group eyes auto:
attribute blinking default:
"merritt_blinking"
group mouth auto:
attribute neutral default
attribute speaking:
"merritt_talking"Code: Select all
image merritt_talking:
"merritt_mouth_opentalk"
.25
"merritt_mouth_pursed"
.25
"merritt_mouth_opentalk"
.25
"merritt_mouth_neutral"
.25
repeatCode: Select all
init python:
def shutup_merritt(event, interact=True, **kwargs):
if event == "slow_done" or event=="end":
renpy.show("merritt neutral")
renpy.restart_interaction() # this
elif event == "begin":
renpy.show("merritt speaking")
define m = Character("Merritt", image="merritt", callback=shutup_merritt)Does anyone have any suggestions? I'm brand new to this, so any help is greatly appreciated!
Artificial Selection
Deep Sea Valentine
Robot Daycare