You have a Steam game and you want to manage mods for it with ModOrganizer (or similar).
In order for MO2 to apply mods you need Steam to launch MO2 and then MO2 to launch the game.
Note: This script is useful for people who run modded Darktide on Linux. If you aren't using mods then you can delete lines 7 and 8 from toggle_darktide_mods.sh
so you just toggle the mesh streamer off.
Darktide on Linux runs great - for the most part. Sometimes you will notice that the game has gotten stuck with low level of detail meshes loaded.
import time | |
def update(): | |
global midiKeysPressed | |
global buttonChange | |
global axisIncrement | |
diagnostics.watch(midi[0].data.channel); | |
diagnostics.watch(midi[0].data.status); | |
diagnostics.watch(midi[0].data.buffer[0]); | |
diagnostics.watch(midi[0].data.buffer[1]); |
// Ground digital pins 2 and 3 to press joystick buttons 0 and 1 | |
// | |
// Based on the "Simple example application that shows how to | |
// read four Arduino digital pins and map them to the USB Joystick library" | |
// by Matthew Heironimus | |
// 2015-11-20 | |
// | |
// Modified to replace a broken "Mega Shifter" 18-speed shift knob controller | |
// by vsTerminus | |
// 2021-05-18 |