Im not sure if its stated anywhere or if its even possible but is there a way to get this to work without using layered images? I have all my sprites set up individually. Im not the best reader so if it was said somewhere I probably missed it.
Viewing post in Renpy Auto Highlight comments
Yeah if you want to do this with individual images, you'll have to do something like.
image eileen happy = At('eileen_happy', sprite_highlight('eileen'))
image eileen sad = At('eileen_sad', sprite_highlight('eileen'))
# Or, if you'd want an ATL example
image eileen happy:
'eileen_happy'
function SpriteFocus('eileen')
It's definitely more cumbersome but I don't have a lot of good ways of working around this. Hope this helps though.