[MODDING] Options.xml not loaded

Issue #2 resolved
Armithaig created an issue

Adding new options through Options.xml per the September 13, 2019 update's scruffed.
https://steamcommunity.com/games/333640/announcements/detail/3026905151737053159

Options are only loaded once before mods are, so no mod-options'll be loaded.

// GameManager
private void Awake() {
    // Options loaded before ModManager.Init().
    // Required for OptionEnableMods and etc.
    Options.LoadOptions();
    steamManager = new SteamManager();
    steamManager.Awake();
    ModManager.Init(true);
    // Suggest loading mod-options separately after.
    // Or just call LoadOptions() again like'm doing locally.
    Options.LoadModOptions();
}

Comments (3)

  1. Corey Frang

    The April 10th tomb beta release changelist might include:

    • [MODDING] Mods can now define an Options.xml, and we will finally use it!
  2. Log in to comment