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

Configuration

DrawableSuits exposes several options through the BepInEx configuration system. The config file is located at:

BepInEx/config/com.toxcgang.drawablesuits.cfg

It is generated automatically on first launch and can be edited with any text editor while the game is closed (changes require a restart to take effect).


Config Options

Editor

Key Default Description
OpenEditorKey F8 The keyboard key that opens and closes the in-game suit editor.

Controller

Key Default Description
ControllerCursorSpeed 1.0 Multiplier for the controller's left-stick virtual cursor speed. Increase for faster cursor movement, decrease for finer control.

Texture

Key Default Description
MaxTextureSize 1024 Maximum width/height in pixels for editable and saved textures. Larger values produce higher-quality results but increase memory usage and sync payload size.
UndoHistorySize 32 Number of undo steps stored in memory. Higher values use more RAM.

Multiplayer

Key Default Description
MultiplayerSyncEnabled true Enable or disable sending your suit texture to other DrawableSuits players when you Apply or Save.
MaxSyncPayloadSize 512000 Maximum total byte size of a texture sync payload. Textures that exceed this limit will not be synced.
SyncChunkSize 4096 Size in bytes of each individual chunk sent via Unity Netcode named messages.

Decals

Key Default Description
EnableFileDialogImport false Show an import button that opens a Windows OS file dialog for importing decal images. Windows only.

Example Config Snippet

[Editor]
OpenEditorKey = F8

[Controller]
ControllerCursorSpeed = 1.5

[Texture]
MaxTextureSize = 2048
UndoHistorySize = 50

[Multiplayer]
MultiplayerSyncEnabled = true
MaxSyncPayloadSize = 1024000
SyncChunkSize = 8192

[Decals]
EnableFileDialogImport = true

Clone this wiki locally