Skip to content
Toxc edited this page May 14, 2026 · 1 revision

Installation

DrawableSuits is a BepInEx plugin for Lethal Company v81. Follow the steps below to get it running.


Prerequisites

  • Lethal Company v81 installed via Steam.
  • BepInExPack for Lethal Company — install it first via Thunderstore or a mod manager such as r2modman / Thunderstore Mod Manager.
  • .NET SDK (if building from source) — any version that supports the project's target framework.

Option A — Build from Source

  1. Clone or download the repository:
    git clone https://github.com/ToxcGang/DrawableSuits.git
    
  2. Open a terminal inside the repo root and build in Release mode:
    dotnet build -c Release
    
  3. Locate the compiled output in:
    dist/DrawableSuits/BepInEx/plugins/DrawableSuits/DrawableSuits.dll
    
  4. Copy DrawableSuits.dll into your BepInEx plugins folder, typically at:
    <Lethal Company install>/BepInEx/plugins/DrawableSuits/DrawableSuits.dll
    

Option B — Thunderstore Package

Package the entire dist/DrawableSuits folder for Thunderstore and install it with r2modman, the Thunderstore Mod Manager, or any compatible manager.


Verifying the Install

  1. Launch Lethal Company.
  2. Join or start a game lobby.
  3. Press F8 (default keybind). The DrawableSuits editor should open.

If the editor does not appear, check the BepInEx console or log file (BepInEx/LogOutput.log) for any error messages from com.toxcgang.drawablesuits.


Folder Structure Created at Runtime

After first launch, DrawableSuits will create the following folders automatically:

BepInEx/
└── config/
    └── DrawableSuits/
        ├── Saves/       ← JSON design metadata files
        ├── Textures/    ← Saved design PNG textures
        └── Decals/      ← Place your decal images here

See the Decals and Save & Load pages for more details.


Uninstalling

Remove DrawableSuits.dll from your plugins folder. Optionally delete the BepInEx/config/DrawableSuits/ folder to remove all saved designs and decals.

Clone this wiki locally