Added Simply Optimized mods and configurations
This commit is contained in:
parent
c966dae0ab
commit
39a21d681a
12 changed files with 121 additions and 6 deletions
17
config/yosbr/config/badoptimizations.txt
Normal file
17
config/yosbr/config/badoptimizations.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
enable_lightmap_caching: true
|
||||||
|
lightmap_time_change_needed_for_update: 80
|
||||||
|
enable_sky_color_caching: true
|
||||||
|
skycolor_time_change_needed_for_update: 20
|
||||||
|
enable_debug_renderer_disable_if_not_needed: true
|
||||||
|
enable_particle_manager_optimization: true
|
||||||
|
enable_toast_optimizations: true
|
||||||
|
enable_sky_angle_caching_in_worldrenderer: true
|
||||||
|
enable_entity_renderer_caching: true
|
||||||
|
enable_block_entity_renderer_caching: true
|
||||||
|
enable_entity_flag_caching: true
|
||||||
|
enable_remove_redundant_fov_calculations: true
|
||||||
|
enable_remove_tutorial_if_not_demo: true
|
||||||
|
show_f3_text: false
|
||||||
|
ignore_mod_incompatibilities: false
|
||||||
|
log_config: false
|
||||||
|
config_version: 3
|
||||||
|
|
@ -4,6 +4,7 @@ globalExecutorParallelism = "1"
|
||||||
[clientSideConfig]
|
[clientSideConfig]
|
||||||
|
|
||||||
[clientSideConfig.modifyMaxVDConfig]
|
[clientSideConfig.modifyMaxVDConfig]
|
||||||
|
enableExtRenderDistanceProtocol = false
|
||||||
enabled = false
|
enabled = false
|
||||||
|
|
||||||
[noTickViewDistance]
|
[noTickViewDistance]
|
||||||
|
|
@ -11,3 +12,9 @@ globalExecutorParallelism = "1"
|
||||||
|
|
||||||
[threadedWorldGen]
|
[threadedWorldGen]
|
||||||
enabled = false
|
enabled = false
|
||||||
|
|
||||||
|
[ioSystem]
|
||||||
|
gcFreeChunkSerializer = true
|
||||||
|
|
||||||
|
[chunkSystem]
|
||||||
|
syncPlayerTickets = false
|
||||||
|
|
@ -8,9 +8,11 @@
|
||||||
"COSMETIC_INFO": "----- Cosmetic only config values below (Does not optimize anything) -----",
|
"COSMETIC_INFO": "----- Cosmetic only config values below (Does not optimize anything) -----",
|
||||||
"dont_add_info_into_debug_hud": true,
|
"dont_add_info_into_debug_hud": true,
|
||||||
"EXPERIMENTAL_INFO": "----- Experimental config values below (Rendering glitches may occur) -----",
|
"EXPERIMENTAL_INFO": "----- Experimental config values below (Rendering glitches may occur) -----",
|
||||||
"experimental_disable_error_checking": false,
|
"experimental_disable_error_checking": true,
|
||||||
"experimental_disable_resource_pack_conflict_handling": false,
|
"experimental_disable_resource_pack_conflict_handling": true,
|
||||||
|
"experimental_screen_batching": true,
|
||||||
"experimental_sign_text_buffering": false,
|
"experimental_sign_text_buffering": false,
|
||||||
|
"experimental_universal_hud_batching": true,
|
||||||
"DEBUG_INFO": "----- Debug only config values below (Do not touch) -----",
|
"DEBUG_INFO": "----- Debug only config values below (Do not touch) -----",
|
||||||
"debug_only_and_not_recommended_disable_universal_batching": false,
|
"debug_only_and_not_recommended_disable_universal_batching": false,
|
||||||
"debug_only_and_not_recommended_disable_mod_conflict_handling": false,
|
"debug_only_and_not_recommended_disable_mod_conflict_handling": false,
|
||||||
|
|
|
||||||
1
config/yosbr/config/lithium.properties
Normal file
1
config/yosbr/config/lithium.properties
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
mixin.experimental=true
|
||||||
|
|
@ -1 +1,14 @@
|
||||||
|
mixin.bugfix.chunk_deadlock=true
|
||||||
|
mixin.bugfix.packet_leak=true
|
||||||
|
mixin.bugfix.paper_chunk_patches=true
|
||||||
|
mixin.perf.clear_fabric_mapping_tables=true
|
||||||
|
mixin.perf.clear_mixin_classinfo=true
|
||||||
|
mixin.perf.dynamic_entity_renderers=true
|
||||||
|
mixin.perf.faster_item_rendering=true
|
||||||
|
mixin.perf.nbt_memory_usage=true
|
||||||
|
mixin.perf.dynamic_sounds=true
|
||||||
|
mixin.perf.thread_priorities=false
|
||||||
|
mixin.perf.deduplicate_location=true
|
||||||
|
mixin.perf.worldgen_allocation=true
|
||||||
mixin.perf.dynamic_resources=true
|
mixin.perf.dynamic_resources=true
|
||||||
|
mixin.bugfix.missing_block_entities=true
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,8 @@ includeMangroveRoots = true
|
||||||
powderSnowCulling = true
|
powderSnowCulling = true
|
||||||
entityModelCulling = false
|
entityModelCulling = false
|
||||||
useOnModdedBlocksByDefault = true
|
useOnModdedBlocksByDefault = true
|
||||||
|
endGatewayCulling = true
|
||||||
|
|
||||||
|
|
||||||
[modCompatibility]
|
[modCompatibility]
|
||||||
minecraft = true
|
minecraft = true
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
"quality": {
|
"quality": {
|
||||||
"weather_quality": "FAST",
|
"weather_quality": "FAST",
|
||||||
"leaves_quality": "FAST"
|
"leaves_quality": "FAST",
|
||||||
|
"enable_vignette": false
|
||||||
},
|
},
|
||||||
"advanced": {
|
"advanced": {
|
||||||
"cpu_render_ahead_limit": 4
|
"cpu_render_ahead_limit": 4
|
||||||
|
|
|
||||||
8
config/yosbr/config/threadtweak.json
Normal file
8
config/yosbr/config/threadtweak.json
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"threadPriority": {
|
||||||
|
"game": 8,
|
||||||
|
"main": 4,
|
||||||
|
"io": 7,
|
||||||
|
"integratedServer": 7
|
||||||
|
}
|
||||||
|
}
|
||||||
16
mods/badoptimizations.pw.toml
Normal file
16
mods/badoptimizations.pw.toml
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
filename = 'BadOptimizations-2.2.3-1.20.1.jar'
|
||||||
|
name = 'BadOptimizations'
|
||||||
|
side = 'client'
|
||||||
|
x-prismlauncher-loaders = [ 'forge', 'fabric' ]
|
||||||
|
x-prismlauncher-mc-versions = [ '1.20.1' ]
|
||||||
|
x-prismlauncher-release-type = 'release'
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash = '74020601544eacc77804981173957bdd839a0a4688e237483f5ce80a299a14b893abe11a23f60c44162ea8a4f9f3ac2952d0aade9875f87b4b1ef3ef8a254754'
|
||||||
|
hash-format = 'sha512'
|
||||||
|
mode = 'url'
|
||||||
|
url = 'https://cdn.modrinth.com/data/g96Z4WVZ/versions/6Js5HJ5e/BadOptimizations-2.2.3-1.20.1.jar'
|
||||||
|
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = 'g96Z4WVZ'
|
||||||
|
version = '6Js5HJ5e'
|
||||||
16
mods/noisium.pw.toml
Normal file
16
mods/noisium.pw.toml
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
filename = 'noisium-fabric-2.3.0+mc1.20-1.20.1.jar'
|
||||||
|
name = 'Noisium'
|
||||||
|
side = 'server'
|
||||||
|
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
|
||||||
|
x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ]
|
||||||
|
x-prismlauncher-release-type = 'release'
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash = 'f0abcdac514bd2b4eb6af3529eeb9980a6fef534d31244879acb291a9943151aeb34f372bf98ae01f6191870bf95e1c0bc36d522433353a1090b96e7ac03c417'
|
||||||
|
hash-format = 'sha512'
|
||||||
|
mode = 'url'
|
||||||
|
url = 'https://cdn.modrinth.com/data/KuNKN7d2/versions/erSJnRcq/noisium-fabric-2.3.0%2Bmc1.20-1.20.1.jar'
|
||||||
|
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = 'KuNKN7d2'
|
||||||
|
version = 'erSJnRcq'
|
||||||
16
mods/threadtweak.pw.toml
Normal file
16
mods/threadtweak.pw.toml
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
filename = 'threadtweak-fabric-1.20.2-0.1.1.jar'
|
||||||
|
name = 'ThreadTweak'
|
||||||
|
side = 'both'
|
||||||
|
x-prismlauncher-loaders = [ 'quilt', 'fabric' ]
|
||||||
|
x-prismlauncher-mc-versions = [ '1.20', '1.20.1', '1.20.2' ]
|
||||||
|
x-prismlauncher-release-type = 'release'
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash = 'b5a9fc2775bc8c020cb88b898dcdf473bf77f03ef41be1661a117872b16582a7e30b4f4a94d4c97855484a173e5e41951d47fcc17aef2429828b35308453835c'
|
||||||
|
hash-format = 'sha512'
|
||||||
|
mode = 'url'
|
||||||
|
url = 'https://cdn.modrinth.com/data/vSEH1ERy/versions/gBP1GqtK/threadtweak-fabric-1.20.2-0.1.1.jar'
|
||||||
|
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = 'vSEH1ERy'
|
||||||
|
version = 'gBP1GqtK'
|
||||||
16
mods/vmp-fabric.pw.toml
Normal file
16
mods/vmp-fabric.pw.toml
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
filename = 'vmp-fabric-mc1.20.1-0.2.0+beta.7.102-all.jar'
|
||||||
|
name = 'Very Many Players (Fabric)'
|
||||||
|
side = 'both'
|
||||||
|
x-prismlauncher-loaders = [ 'fabric' ]
|
||||||
|
x-prismlauncher-mc-versions = [ '1.20.1' ]
|
||||||
|
x-prismlauncher-release-type = 'alpha'
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash = '38ba14d870ddbcef233c9baa399005aaccde95d7b77175aa3a795eb9fed1086492b4ac5c6bbc05909dd76dce1b19b5c26613585161c2f3d20f2494beb8b23fe4'
|
||||||
|
hash-format = 'sha512'
|
||||||
|
mode = 'url'
|
||||||
|
url = 'https://cdn.modrinth.com/data/wnEe9KBa/versions/sV8lIBhJ/vmp-fabric-mc1.20.1-0.2.0%2Bbeta.7.102-all.jar'
|
||||||
|
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = 'wnEe9KBa'
|
||||||
|
version = 'sV8lIBhJ'
|
||||||
Loading…
Add table
Add a link
Reference in a new issue