1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-12 16:15:20 +02:00

Make bloom parameters server-controlled (#15231)

This commit is contained in:
grorp
2024-10-09 15:08:03 +02:00
committed by GitHub
parent 13f533d490
commit 6ac4447134
12 changed files with 95 additions and 66 deletions

View File

@@ -161,6 +161,11 @@ local function load()
note.requires = get_setting_info("enable_auto_exposure").requires
table.insert(content, idx, note)
idx = table.indexof(content, "enable_bloom") + 1
note = component_funcs.note(fgettext_ne("(The game will need to enable bloom as well)"))
note.requires = get_setting_info("enable_bloom").requires
table.insert(content, idx, note)
idx = table.indexof(content, "enable_volumetric_lighting") + 1
note = component_funcs.note(fgettext_ne("(The game will need to enable volumetric lighting as well)"))
note.requires = get_setting_info("enable_volumetric_lighting").requires