From 38bf28a0ca7c1e3863f8706118f317d116b297ce Mon Sep 17 00:00:00 2001 From: Citali Date: Sat, 18 Apr 2020 14:20:38 +0200 Subject: [PATCH] First start of forge 31.1.46. No mods installed. --- .gitignore | 9 ++++++++- config/fml.toml | 8 ++++++++ config/forge-client.toml | 22 ++++++++++++++++++++++ 3 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 config/fml.toml create mode 100644 config/forge-client.toml diff --git a/.gitignore b/.gitignore index bbe5647..811e086 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,9 @@ +# folders +logs/ +resourcepacks/ +saves/ + +# files .curseclient -minecraftinstance.json \ No newline at end of file +minecraftinstance.json +realms_persistence.json \ No newline at end of file diff --git a/config/fml.toml b/config/fml.toml new file mode 100644 index 0000000..e1ca72d --- /dev/null +++ b/config/fml.toml @@ -0,0 +1,8 @@ +# Enable forge global version checking +versionCheck = true +# does the splashscreen run +splashscreen = true +defaultConfigPath = "defaultconfigs" +# max threads for parallel loading : -1 uses Runtime#availableProcessors +maxThreads = -1 + diff --git a/config/forge-client.toml b/config/forge-client.toml new file mode 100644 index 0000000..7a7d903 --- /dev/null +++ b/config/forge-client.toml @@ -0,0 +1,22 @@ + +#Client only settings, mostly things related to rendering +[client] + #Toggle off to make missing model text in the gui fit inside the slot. + zoomInMissingModelTextInGui = false + #Enable uploading cloud geometry to the GPU for faster rendering. + forgeCloudsEnabled = true + #Disable culling of hidden faces next to stairs and slabs. Causes extra rendering, but may fix some resource packs that exploit this vanilla mechanic. + disableStairSlabCulling = false + #Enable Forge to queue all chunk updates to the Chunk Update thread. + #May increase FPS significantly, but may also cause weird rendering lag. + #Not recommended for computers without a significant number of cores available. + alwaysSetupTerrainOffThread = false + #Enable the Forge block rendering pipeline - fixes the lighting of custom models. + forgeLightPipelineEnabled = true + #EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models. + experimentalForgeLightPipelineEnabled = false + #When enabled, makes specific reload tasks such as language changing quicker to run. + selectiveResourceReloadEnabled = true + #When enabled, Forge will show any warnings that occurred during loading. + showLoadWarnings = true +