mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
Fixed, Sectors Mode, UDMF: "Make Brightness Gradient" action was not working when "Sector Brightness" mode was selected...
This commit is contained in:
parent
3575ffc0a3
commit
12203f1701
1 changed files with 1 additions and 1 deletions
|
@ -1699,7 +1699,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
//mxd. Use UDMF light?
|
||||
string mode = (string)BuilderPlug.Me.MenusForm.GradientModeMenu.SelectedItem;
|
||||
InterpolationTools.Mode interpolationmode = (InterpolationTools.Mode) BuilderPlug.Me.MenusForm.GradientInterpolationMenu.SelectedIndex;
|
||||
if(General.Map.UDMF)
|
||||
if(General.Map.UDMF && mode != MenusForm.BrightnessGradientModes.Sectors)
|
||||
{
|
||||
if(mode == MenusForm.BrightnessGradientModes.Ceilings || mode == MenusForm.BrightnessGradientModes.Floors)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue