Add "Bloom Mode" config option (Off, Classic, Dusk)

This commit is contained in:
Luke Street
2026-04-13 13:06:14 -06:00
parent a3a36508d6
commit b3cc9ba02e
7 changed files with 89 additions and 10 deletions
+3 -5
View File
@@ -1501,13 +1501,11 @@ void mDoGph_gInf_c::bloom_c::draw2() {
void mDoGph_gInf_c::bloom_c::draw() {
ZoneScoped;
if (!dusk::getSettings().game.enableBloom) {
if (dusk::getSettings().game.bloomMode.getValue() == dusk::BloomMode::Dusk) {
draw2();
return;
}
static bool s_bloom2 = false;
if (s_bloom2) {
draw2();
if (dusk::getSettings().game.bloomMode.getValue() != dusk::BloomMode::Classic) {
return;
}