mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
ec9c3a71f9
Fixed: voxel support logic was outdated, which in some cases resulted in voxels not being loaded and in some weird behaviour when trying to change pitch/roll of associated things. Updated sprites lookup logic. Now it correctly handles sprites named like NNNNA0B0. Fixed: in some cases DECORATE parser was unable to correctly detect sprite name & frame(s) block. Updated ZDoom_ACS.cfg. Updated ZDoom_DECORATE.cfg.
26 lines
319 B
C#
26 lines
319 B
C#
namespace CodeImp.DoomBuilder.Rendering
|
|
{
|
|
public enum ModelRenderMode
|
|
{
|
|
NONE,
|
|
SELECTION,
|
|
ACTIVE_THINGS_FILTER,
|
|
ALL,
|
|
}
|
|
|
|
public enum LightRenderMode
|
|
{
|
|
NONE,
|
|
ALL,
|
|
ALL_ANIMATED,
|
|
}
|
|
|
|
public enum ThingRenderMode
|
|
{
|
|
NORMAL,
|
|
MODEL,
|
|
VOXEL,
|
|
WALLSPRITE,
|
|
FLATSPRITE,
|
|
}
|
|
}
|