Skip to main content

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

I can't find the Achievements Gallery button in the main menu, I don't know what to do. I tried deleting the datetime in the backend to try and fix it (because I was reading through the other comments here) but that didn't work either. 

Hello! You have to make a button to lead to the achievement gallery yourself - it's not built into your project or the tool because I don't know how your main menu screen is set up. That's what this bit of code in the instructions is for:

textbutton _("Achievements") action ShowMenu("achievement_gallery")  

You need to add that or something similar to your project to access the achievement gallery. Don't delete datetime either - that was a very specific case where another bit of code had imported datetime already in a different way. I suggest not changing anything in the backend unless you understand what you're doing.

Ok! Thank you