Skip to content

Configuration

Hawkmax edited this page Oct 10, 2025 · 3 revisions

You can find the configuration file in the __GAME_SETUP__ folder:

// Determines if RichJson will be applied for game files that are read
// by the raptor file functions.
// This would also include systems like: Skin, Race and LG
#macro RICH_JSON_ENABLED_FOR_FILE_FUNCTIONS		true

// Twins should not be nested, cause there is no known use case right now.
// However if you have trouble with nested twins and you want to ignore them.
// You could set this to false. But keep in mind that this should be temporary solution!
#macro RICH_JSON_CRASH_ON_NESTED_TWIN			true

// With this macro you can auto include your own modules
// and exclude the built-in raptor modules. Just add them to the array.
#macro RICH_JSON_AUTO_INCLUDED_MODULES			global.__rich_json_auto_included_modules
RICH_JSON_AUTO_INCLUDED_MODULES = [ "raptor", "raptor_ui" ]

Author’s Recommendation: next read Resolve Order

Clone this wiki locally