Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hello! I'm sorry if it sounds like a silly question, but is it possible to change the frame image depending on the achievement? 

Sure! The achievement itself is passed into the popup screen (by default, as the argument called "a"), so you can check for that and use a different background e.g. 

frame:
    style_prefix 'achieve_popup'
    if a is all_achievements:
        background Frame("my_platinum_frame.png", 5, 5)

ohhhh, thank you so much!