What are ModOptions

Mod options are a way for modders to add configuration options to their scripted mods which appear in the player menu.

They are attributes in c# which sit in top of static methods, properties or fields and automatically add the options to the player menu without the need for additional json.

Untitled

What are the features of ModOptions

When are ModOptions Loaded

Mod Options are loaded for each mod after all of the assemblies, addressable bundles and catalog files for all mods are loaded.

They are loaded before ThunderScripts.

How do I use ModOptions

Mod options are attributes that can be put onto static method, properties or fields within a script.