UltimateZoneBuilder/Source/Core/Config/ModelAndLightRenderModes.cs
MaxED 8f2c6e3f60 Classic modes: added "Show models for current things filter only" model rendering mode.
Things Filters: things filters can now be inverted (added "Invert Filter" checkbox to the Things Filters window).
2015-06-27 09:10:24 +00:00

17 lines
215 B
C#

namespace CodeImp.DoomBuilder.Config
{
public enum ModelRenderMode
{
NONE,
SELECTION,
ACTIVE_THINGS_FILTER,
ALL,
}
public enum LightRenderMode
{
NONE,
ALL,
ALL_ANIMATED,
}
}