mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
ee6faba11c
"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.
10 lines
139 B
C#
10 lines
139 B
C#
namespace CodeImp.DoomBuilder.Map
|
|
{
|
|
public enum SplitLineBehavior
|
|
{
|
|
Interpolate,
|
|
CopyXY,
|
|
ResetXCopyY,
|
|
ResetXY,
|
|
}
|
|
}
|