Equinox-QuickBuild icon

QuickBuild

Adds a radial menu that lets you quickly select a building to place.

Last updated 2 months ago
Total downloads 116
Total rating 0 
Categories Mods
Dependency string Equinox-QuickBuild-1.0.0
Dependants 0 other packages depend on this package

This mod requires the following mods to function

Equinox-EquinoxsModUtils-5.0.0 icon
Equinox-EquinoxsModUtils

A collection of tools for modders

Preferred version: 5.0.0
Equinox-EquinoxsDebuggingTools-1.0.2 icon
Equinox-EquinoxsDebuggingTools

A library that solves logging issues and provides debugging tools.

Preferred version: 1.0.2

README

QuickBuild

Banner Image

Description

Controls:

  • Tap the BackQuote(`) key (configurable) to show a radial menu of categories / buildables.
  • Click an item in the menu to either open that category or select that buildable.
  • Right click anywhere to go back a level, or exit if you're in the starting category.
  • Tap the ` key again to close the menu without selecting a buildable.

Modders: Use the public static functions AddItem() & 'InsertItem()' to add your own buildables to the menu.

public class MenuItem{
    string name;
    string icon;
    string buildable;
}

MenuItem reactor = new MenuItem(){
    name = "Reactor",
    icon = "Atlantum Reactor",
    buildable = "Atlantum Reactor"
}

QuickBuild.AddItem("Root/Production/Power", reactor);

To add a new folder, simply don't set the buildable member:

MenuItem moddedCategory = new MenuItem(){
    name = "Modded",
    icon = "Planter MKIII"
}

QuickBuild.AddItem("Root", moddedCategory);
QuickBuild.AddItem("Root/Modded", reactor);
QuickBuild.InsertItem("Root/Modded", 0, planterMk3);

Screenshots

RootMenu.png

Config Options

Name Type Description Default Value

Installation

If you are using Techtonica Mod Loader, you can ignore these steps.

Note, this mod requires use of the BepInEx Update function. If you have not already done so for another mod, follow these instructions:

  1. Find your game install folder.
  2. Navigate to BepInEx\config.
  3. Open BepInEx.cfg.
  4. Find the setting "HideGameManagerObject".
  5. Set it to "true".
  6. Save & close.

Techtonica Mod Loader Installation

You can download the Techtonica Mod Loader from here and use that to install this mod.

Manual Install Instructions

Note: If you are playing on Gamepass, your game version is likely behind the steam version. Please check the version compatibility chart below.

Your game folder is likely in one of these places:
    • Steam: (A-Z):/steam/steamapps/common/Techtonica
    • Gamepass: (A-Z):/XboxGames/Techtonica/Content
    • Gamepass: Could also be in C:/Program Data/WindowsApps

  1. Download BepInEx v5.4.21 from here
  2. Follow the installation instructions here
  3. Download and install any dependencies.
  4. Extract the contents of the .zip file for this mod.
  5. Drag the "BepInEx" folder into your game folder.
  6. Change config options.

Credits

Disclaimer

Note: NEW Games must be loaded, saved, and reloaded for mods to take effect. Existing saves will auto-apply mods. Please be sure to backup your saves before using mods: AppData\LocalLow\Fire Hose Games\Techtonica USE AT YOUR OWN RISK! Techtonica Devs do not provide support for Mods, and cannot recover saves damaged by mod usage.

Some assets may come from Techtonica or from the website created and owned by Fire Hose Games, who hold the copyright of Techtonica. All trademarks and registered trademarks present in any images are proprietary to Fire Hose Games.