mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Flickering hud elements (spraycan aura, super flicky) are instead transparent with reducevfx.
This commit is contained in:
parent
ab2bc061d6
commit
d8b0720228
1 changed files with 5 additions and 1 deletions
|
|
@ -454,7 +454,11 @@ Visibility is_object_visible(const mobj_t* mobj)
|
|||
case MT_SPRAYCAN:
|
||||
case MT_SUPER_FLICKY:
|
||||
// Always flickers.
|
||||
return Visibility::kFlicker;
|
||||
// Actually no, it gave my friend a migraine, this will *not* always flicker
|
||||
if (cv_reducevfx.value)
|
||||
return Visibility::kTransparent;
|
||||
else
|
||||
return Visibility::kFlicker;
|
||||
|
||||
default:
|
||||
// Transparent when not visible.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue