mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-30 01:49:04 -04:00
Add "Bloom Mode" config option (Off, Classic, Dusk)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user