mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-10 06:41:49 +00:00
cdfe94bfa4
- "Merge Dragged Vertices Only". Only vertex-line intersections will be processed (DB2 mode). - "Merge Dragged Geometry". Geometry merging will be performed. - "Replace with Dragged Geometry". Dragged geometry will replace underlaying geometry. You can switch between these using 3 new actions, top toolbar buttons and Edit menu buttons. Changed: activating the same 2D mode repeatedly now toggles View modes. Renamed "Merge Geometry" action/menu item to "Snap to Geometry". More fixes to vertex/linedef/sector dragging logic. Updated ZDoom_DECORATE.cfg.
9 lines
124 B
C#
9 lines
124 B
C#
namespace CodeImp.DoomBuilder.Map
|
|
{
|
|
public enum MergeGeometryMode //mxd
|
|
{
|
|
CLASSIC,
|
|
MERGE,
|
|
REPLACE,
|
|
}
|
|
}
|