Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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.

There are instructions on how to do that! I'm also not using layered images, but thankfully there's a way

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.

thank you so much omg