Inital Files
This commit is contained in:
commit
e39936e85d
101 changed files with 4985 additions and 0 deletions
32
config/fml.toml
Normal file
32
config/fml.toml
Normal file
|
@ -0,0 +1,32 @@
|
|||
#Disables File Watcher. Used to automatically update config if its file has been modified.
|
||||
disableConfigWatcher = false
|
||||
#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them.
|
||||
earlyWindowControl = true
|
||||
#Max threads for early initialization parallelism, -1 is based on processor count
|
||||
maxThreads = -1
|
||||
#Enable NeoForge global version checking
|
||||
versionCheck = true
|
||||
#Default config path for servers
|
||||
defaultConfigPath = "defaultconfigs"
|
||||
#Disables Optimized DFU client-side - already disabled on servers
|
||||
disableOptimizedDFU = true
|
||||
#Early window provider
|
||||
earlyWindowProvider = "fmlearlywindow"
|
||||
#Early window width
|
||||
earlyWindowWidth = 854
|
||||
#Early window height
|
||||
earlyWindowHeight = 480
|
||||
#Early window framebuffer scale
|
||||
earlyWindowFBScale = 1
|
||||
#Early window starts maximized
|
||||
earlyWindowMaximized = false
|
||||
#Skip specific GL versions, may help with buggy graphics card drivers
|
||||
earlyWindowSkipGLVersions = []
|
||||
#Squir?
|
||||
earlyWindowSquir = false
|
||||
#Define dependency overrides below
|
||||
#Dependency overrides can be used to forcibly remove a dependency constraint from a mod or to force a mod to load AFTER another mod
|
||||
#Using dependency overrides can cause issues. Use at your own risk.
|
||||
#Example dependency override for the mod with the id 'targetMod': dependency constraints (incompatibility clauses or restrictive version ranges) against mod 'dep1' are removed, and the mod will now load after the mod 'dep2'
|
||||
#dependencyOverrides.targetMod = ["-dep1", "+dep2"]
|
||||
dependencyOverrides = {}
|
Loading…
Add table
Add a link
Reference in a new issue