Skip to main content

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

Hello, awesome plugin! Sorry if this is obvious or has been answered elsewhere, but is there any way to call different versions of the encyclopedia scene that only contains certain categories?
Example: my main menu has a Bestiary option that obviously calls that, but could I have a separate menu entry that opens a separate version of the Encyclopedia that only shows Items? Hope that made sense! Thank

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~!