mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- added menu option for r_vanillatrans
This commit is contained in:
parent
ede15da98c
commit
579febb6f8
2 changed files with 9 additions and 0 deletions
|
@ -1815,6 +1815,7 @@ DSPLYMNU_SKYMODE = "Sky render mode";
|
|||
DSPLYMNU_LINEARSKY = "Linear skies";
|
||||
DSPLYMNU_GZDFULLBRIGHT = "Fullbright overrides sector color";
|
||||
DSPLYMNU_DRAWFUZZ = "Use fuzz effect";
|
||||
DSPLYMNU_OLDTRANS = "Classic Transparency";
|
||||
DSPLYMNU_TRANSSOUL = "Lost Soul translucency";
|
||||
DSPLYMNU_FAKECONTRAST = "Use fake contrast";
|
||||
DSPLYMNU_ROCKETTRAILS = "Rocket Trails";
|
||||
|
@ -2367,6 +2368,7 @@ OPTVAL_HWPOLY = "OpenGL-Accelerated";
|
|||
OPTVAL_SWDOOM = "Doom Software Renderer";
|
||||
OPTVAL_DEDICATED = "High-Performance";
|
||||
OPTVAL_INTEGRATED = "Power-Saving";
|
||||
OPTVAL_VANILLA = "Vanilla";
|
||||
|
||||
// Colors
|
||||
C_BRICK = "\cabrick";
|
||||
|
|
|
@ -690,6 +690,12 @@ OptionValue Fuzziness
|
|||
2.0, "$OPTVAL_SHADOW"
|
||||
}
|
||||
|
||||
OptionValue VanillaTrans
|
||||
{
|
||||
0.0, "$OPTVAL_ZDOOM"
|
||||
1.0, "$OPTVAL_VANILLA"
|
||||
}
|
||||
|
||||
OptionValue GPUSwitch
|
||||
{
|
||||
0.0, "$OPTVAL_DEFAULT"
|
||||
|
@ -750,6 +756,7 @@ OptionMenu "VideoOptions"
|
|||
}
|
||||
|
||||
Option "$DSPLYMNU_DRAWFUZZ", "r_drawfuzz", "Fuzziness"
|
||||
Option "$DSPLYMNU_OLDTRANS", "r_vanillatrans", "VanillaTrans"
|
||||
Slider "$DSPLYMNU_TRANSSOUL", "transsouls", 0.25, 1.0, 0.05, 2
|
||||
Option "$DSPLYMNU_FAKECONTRAST", "r_fakecontrast", "Contrast"
|
||||
Option "$DSPLYMNU_ROCKETTRAILS", "cl_rockettrails", "RocketTrailTypes"
|
||||
|
|
Loading…
Reference in a new issue