mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
c90d10c08c
Renamed "Toggle dynamic lights rendering" action to "Show dynamic lights". Changed: "Show dynamic lights" action now toggles between available dynamic light rendering modes. Renamed "Toggle models rendering" action to "Show models". Changed: "Show models" action now toggles between available model rendering modes. Removed "Toggle dynamic lights animation" and "Render selected/all models" actions. Fixed, Randomize Sectors form: selection highlight was not updated after applying the changes when the form was shown in Sectors mode. Consistency: selection is now cleared after applying changes done in Randomize Things and Randomize Vertices forms. Fixed, Classic modes: sprites of things with attached models were not rendered when model rendering was disabled. Updated documentation.
16 lines
190 B
C#
16 lines
190 B
C#
namespace CodeImp.DoomBuilder.Config
|
|
{
|
|
public enum ModelRenderMode
|
|
{
|
|
NONE,
|
|
SELECTION,
|
|
ALL,
|
|
}
|
|
|
|
public enum LightRenderMode
|
|
{
|
|
NONE,
|
|
ALL,
|
|
ALL_ANIMATED,
|
|
}
|
|
}
|