rsemcm/client/overrides/config/forge-client.toml

19 lines
960 B
TOML
Raw Normal View History

2022-05-21 15:25:03 -05:00
#Client only settings, mostly things related to rendering
[client]
#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
#EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models.
experimentalForgeLightPipelineEnabled = false
#When enabled, Forge will show any warnings that occurred during loading.
showLoadWarnings = true
#Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones.
useCombinedDepthStencilAttachment = false
#Forces the use of System.nanoTime instead of glfwGetTime, as the main Util time provider
forceSystemNanoTime = false
2022-06-19 22:05:27 -05:00
#Enable the Forge block rendering pipeline - fixes the lighting of custom models.
forgeLightPipelineEnabled = true
2022-05-21 15:25:03 -05:00