Themes - AnduoGames/ThirdCrisisModding GitHub Wiki

Setting Themes

Themes in Third Crisis change UI colors and images at runtime. A prime example of this being used in Third Crisis is during one of the endings (can you guess which one?).

The default theme is the Airship theme, but there are two other themes available to pick from!

Themes:

  • Theme_Default
  • Theme_BarEnding
  • Theme_Peitho

Switching theme is easy, all you have to do is fetch the theme and apply it like so:

var theme = ScriptableManager.Get<Theme>("Theme_BarEnding");
ThemeManager.SetTheme(theme);
⚠️ **GitHub.com Fallback** ⚠️