Skip to main content

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

Hi, you could do this by making categories have certain switches that must be on to display, and then turning those switches ON/OFF before calling the scene in your menu command. You can turn a switch on or off via script by doing

$gameSwitches.setValue(switchId, true/false);

D'oh.. That's such a simple fix and I didn't think of it! Thanks a lot~!