A set of modding tools for the newest generation of the Bitsquid game engine that powers the game Warhammer 40.000: Darktide.
Find a file
Lucas Schwiderski 9882720675
Some checks failed
lint/clippy Checking for common mistakes and opportunities for code improvement
build/linux Build for the target platform: linux
build/msvc Build for the target platform: msvc
Delay mod loading
The initial implementation of DML ended up loading mods quite late,
which did give it the benefit of all `Manager`s being available.
This change therefore moves mod loading until after those are
initialized.

But contrary to old DML, we still create a separate game state to make
sure the game doesn't advance until mods are loaded. This avoids race
conditions like the one where LogMeIn needs to come early in the load
order.
2023-11-16 21:14:50 +01:00
.ci ci: Copy the correct library files 2023-11-08 10:50:42 +01:00
crates Delay mod loading 2023-11-16 21:14:50 +01:00
docs/screenshots docs: Add split READMEs 2023-03-01 22:14:31 +01:00
lib Use version number from Nexus import 2023-11-14 16:19:07 +01:00
.dockerignore feat(ci): Add Dockerfiles to build locally 2023-04-05 20:22:29 +02:00
.fdignore feat: Add Docker images for CI compilation 2023-03-23 13:42:03 +01:00
.gitignore feat: Add Docker images for CI compilation 2023-03-23 13:42:03 +01:00
.gitmodules Vendor ansi-parser 2023-11-08 09:43:18 +01:00
Cargo.lock Use template engine to build mod_data.lua 2023-11-14 15:06:12 +01:00
Cargo.toml Implement deploying non-bundled mods 2023-11-13 09:45:08 +01:00
CHANGELOG.adoc oodle: Fix linking statically 2023-11-06 13:42:51 +01:00
Justfile feat: Run build commands as user 2023-04-09 14:32:21 +02:00
LICENSE chore: Initialize project 2022-11-01 12:10:05 +01:00
README.adoc docs: Add split READMEs 2023-03-01 22:14:31 +01:00
rust-toolchain.toml chore: Initialize project 2022-11-01 12:10:05 +01:00
rustfmt.toml feat: Implement bundle decompression 2022-11-01 17:35:47 +01:00

Darktide Mod Tools

A set of tools to use and develop mods for the newest generation of the Bitsquid game engine that powers the game Warhammer 40.000: Darktide.

Darktide Mod Manager (DTMM)

DTMM is a GUI application to install and manage mods for the game.

dtmm main view

Head to crates/dtmm for more information or check the Wiki.

Darktide Mod Tools (DTMT)

DTMT is a CLI application providing various commands that aid in developing mods for the game.

Head to crates/dtmt for more information or check the Wiki.