These repos are on this GodotModding GitHub org.
Name | Description |
---|---|
ModLoader | Universal mod loader for any Godot game |
ModLoader Examples | Heavily commented examples of ModLoader mods |
Development Tool | Tool to improve the development experience when creating Godot Mod Loader mods |
Mod Loader Wiki | Better documentation for the Mod Loader |
These aren't part of the GodotModding org, but the code here is still worth checking out.
External orgs and repos that are related to ModLoader.
Name | Notes | Discord |
---|---|---|
⚙ Godot Workshop Utility | Tool for uploading ModLoader mods via the Steam Workshop, built by Blobfish | - |
BrotatoMods | Unofficial GitHub org for Brotato mods. | Discord |
DomeKeeperMods | Official GitHub org for Dome Keeper mods. Features an extensive wiki and a nice beginner tutorial. | Discord |
Windowkill Modding | Official guide to getting started with modding in Windowkill | Discord |
Other Godot games with modding support, or modding communities. Most of these were developed and published before ModLoader.
Game | Repo | Discord | Notes |
---|---|---|---|
Delta-V | Delta-V-Modding | Discord | The basis for ModLoader |
YomiHustle | YomiModding | Discord | "Your Only Move is Hustle". Based on the Delta-V loader. |
Cruelty Squad | crus-modloader | Discord | See also: crus-modbase |
Luck be a Landlord | LBAL-Modding | Discord | Official API from the game's devs. The game also has Steam Workshop support. |
These tools range from helpful to basically mandatory for Godot modding.
Name | Description |
---|---|
GDRETools | Decompile Godot PCKs into a project you can open in the Godot editor. Required for any level of modding |
GodotPckTool | Lightweight CLI tool for adding files to PCKs, plus lots of other features. Used by ModLoader's setup process, to inject ModLoader into existing PCKs. |
GodotPCKExplorer | Lightweight GUI tool. Includes a feature to extract embedded PCKs from EXEs. |
GodotSteam | A version of Godot with inbuilt Steam SDK support. Be sure to download the editor version from the Releases page, not the plugin. |
Other approaches to modding that differ from ModLoader, and which aren't specific to a single game.
Name | Description |
---|---|
godot-wasm | Interact with WebAssembly modules from Godot. |
Godot Lua API | allows you to create custom Modding API's in a sandboxed environment |
GDLuau | Enables modding with Luau |
mod.io godot | Mod.io UGC and mod toolkit integration |
GodotCSharpMod | New C# mod loader for Godot |
Modot | C# mod loader for Godot (doesn't appear to be actively maintained) |
godot-sandbox | Work in progress. Safe, low-latency and fast sandbox, currently supports modding in C++ and Rust |