QuickBuild
Adds a radial menu that lets you quickly select a building to place.
Last updated | 2 weeks ago |
Total downloads | 287 |
Total rating | 0 |
Categories | Mods |
Dependency string | Equinox-QuickBuild-2.0.0 |
Dependants | 0 other packages depend on this package |
This mod requires the following mods to function
Equinox-EquinoxsDebuggingTools
A library that solves logging issues and provides debugging tools
Preferred version: 2.0.0README
Quick Build
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);
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:
- Find your game install folder.
- Navigate to BepInEx\config.
- Open BepInEx.cfg.
- Find the setting "HideGameManagerObject".
- Set it to "true".
- 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
- Download BepInEx v5.4.21 from here
- Follow the installation instructions here
- Download and install any dependencies.
- Extract the contents of the .zip file for this mod.
- Drag the "BepInEx" folder into your game folder.
- Change config options.
Changelog
V2.0.0
- Added: Update to 1.0
- Added new buildables in 1.0
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.