UltimateZoneBuilder/Source/Core/Map/SplitLineBehavior.cs
MaxED ee6faba11c "File -> Export -> Selection as Wavefront .obj" menu command was not working.
"Preferences -> Editing -> When splitting a linedef" setting is now always used when splitting linedefs.
"Preferences -> Editing -> When splitting a linedef": added "Reset X and Y" option.
"Preferences -> Editing -> Auto-align textures of newly created linedefs" option now works in a more intelligent fashion.
2014-03-19 13:03:47 +00:00

10 lines
139 B
C#

namespace CodeImp.DoomBuilder.Map
{
public enum SplitLineBehavior
{
Interpolate,
CopyXY,
ResetXCopyY,
ResetXY,
}
}