mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-31 05:40:44 +00:00
- Added r_blendmethod to the menu.
This commit is contained in:
parent
9ece249dbb
commit
2fa13396f2
2 changed files with 11 additions and 0 deletions
|
@ -1780,6 +1780,8 @@ DSPLYMNU_BRIGHTNESS = "Brightness";
|
||||||
DSPLYMNU_VSYNC = "Vertical Sync";
|
DSPLYMNU_VSYNC = "Vertical Sync";
|
||||||
DSPLYMNU_CAPFPS = "Rendering Interpolation";
|
DSPLYMNU_CAPFPS = "Rendering Interpolation";
|
||||||
DSPLYMNU_COLUMNMETHOD = "Column render mode";
|
DSPLYMNU_COLUMNMETHOD = "Column render mode";
|
||||||
|
DSPLYMNU_BLENDMETHOD = "Transparency render mode";
|
||||||
|
|
||||||
DSPLYMNU_WIPETYPE = "Screen wipe style";
|
DSPLYMNU_WIPETYPE = "Screen wipe style";
|
||||||
DSPLYMNU_SHOWENDOOM = "Show ENDOOM screen";
|
DSPLYMNU_SHOWENDOOM = "Show ENDOOM screen";
|
||||||
DSPLYMNU_BLOODFADE = "Blood Flash Intensity";
|
DSPLYMNU_BLOODFADE = "Blood Flash Intensity";
|
||||||
|
@ -2189,6 +2191,8 @@ OPTVAL_INVERTED = "Inverted";
|
||||||
OPTVAL_NOTINVERTED = "Not Inverted";
|
OPTVAL_NOTINVERTED = "Not Inverted";
|
||||||
OPTVAL_ORIGINAL = "Original";
|
OPTVAL_ORIGINAL = "Original";
|
||||||
OPTVAL_OPTIMIZED = "Optimized";
|
OPTVAL_OPTIMIZED = "Optimized";
|
||||||
|
OPTVAL_CLASSIC = "Classic (Faster)";
|
||||||
|
OPTVAL_PRECISE = "Precise";
|
||||||
OPTVAL_NORMAL = "Normal";
|
OPTVAL_NORMAL = "Normal";
|
||||||
OPTVAL_STRETCH = "Stretch";
|
OPTVAL_STRETCH = "Stretch";
|
||||||
OPTVAL_CAPPED = "Capped";
|
OPTVAL_CAPPED = "Capped";
|
||||||
|
|
|
@ -600,6 +600,12 @@ OptionValue ColumnMethods
|
||||||
1.0, "$OPTVAL_OPTIMIZED"
|
1.0, "$OPTVAL_OPTIMIZED"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
OptionValue BlendMethods
|
||||||
|
{
|
||||||
|
0.0, "$OPTVAL_CLASSIC"
|
||||||
|
1.0, "$OPTVAL_PRECISE"
|
||||||
|
}
|
||||||
|
|
||||||
OptionValue SkyModes
|
OptionValue SkyModes
|
||||||
{
|
{
|
||||||
0.0, "$OPTVAL_NORMAL"
|
0.0, "$OPTVAL_NORMAL"
|
||||||
|
@ -671,6 +677,7 @@ OptionMenu "VideoOptions"
|
||||||
Slider "$DSPLYMNU_PICKUPFADE", "pickup_fade_scalar", 0.0, 1.0, 0.05, 2
|
Slider "$DSPLYMNU_PICKUPFADE", "pickup_fade_scalar", 0.0, 1.0, 0.05, 2
|
||||||
Slider "$DSPLYMNU_WATERFADE", "underwater_fade_scalar", 0.0, 1.0, 0.05, 2
|
Slider "$DSPLYMNU_WATERFADE", "underwater_fade_scalar", 0.0, 1.0, 0.05, 2
|
||||||
Option "$DSPLYMNU_COLUMNMETHOD", "r_columnmethod", "ColumnMethods"
|
Option "$DSPLYMNU_COLUMNMETHOD", "r_columnmethod", "ColumnMethods"
|
||||||
|
Option "$DSPLYMNU_BLENDMETHOD", "r_blendmethod", "BlendMethods"
|
||||||
|
|
||||||
StaticText " "
|
StaticText " "
|
||||||
Option "$DSPLYMNU_WIPETYPE", "wipetype", "Wipes"
|
Option "$DSPLYMNU_WIPETYPE", "wipetype", "Wipes"
|
||||||
|
|
Loading…
Reference in a new issue