Fellies/config[client]/forge-client.toml

25 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2021-01-15 23:04:01 +00:00
#Client only settings, mostly things related to rendering
[client]
2021-01-24 16:10:27 +00:00
#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
2021-01-28 20:57:27 +00:00
#Toggle off to make missing model text in the gui fit inside the slot.
zoomInMissingModelTextInGui = false
2021-01-15 23:04:01 +00:00
#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
2021-01-24 16:10:27 +00:00
#EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models.
experimentalForgeLightPipelineEnabled = true
2021-01-28 20:57:27 +00:00
#Enable the Forge block rendering pipeline - fixes the lighting of custom models.
forgeLightPipelineEnabled = true
2021-01-24 16:10:27 +00:00
#When enabled, Forge will show any warnings that occurred during loading.
showLoadWarnings = true
2021-01-28 20:57:27 +00:00
#Enable uploading cloud geometry to the GPU for faster rendering.
forgeCloudsEnabled = true
#When enabled, makes specific reload tasks such as language changing quicker to run.
selectiveResourceReloadEnabled = true
2021-01-15 23:04:01 +00:00
#Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones.
useCombinedDepthStencilAttachment = false