mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-04-25 03:51:01 +00:00
- Tools.DrawLines no longer snaps the geometry to map format accuracy. Use General.Map.Map.SnapAllToAccuracy() to compensate.
This commit is contained in:
parent
b0dfbc0df9
commit
ed9f393fb1
2 changed files with 3 additions and 3 deletions
|
@ -1381,9 +1381,6 @@ namespace CodeImp.DoomBuilder.Geometry
|
|||
}
|
||||
}
|
||||
|
||||
// Snap to map format accuracy
|
||||
General.Map.Map.SnapAllToAccuracy();
|
||||
|
||||
// Mark new geometry only
|
||||
General.Map.Map.ClearMarkedLinedefs(false);
|
||||
General.Map.Map.ClearMarkedVertices(false);
|
||||
|
|
|
@ -411,6 +411,9 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// Make the drawing
|
||||
Tools.DrawLines(points);
|
||||
|
||||
// Snap to map format accuracy
|
||||
General.Map.Map.SnapAllToAccuracy();
|
||||
|
||||
// Clear selection
|
||||
General.Map.Map.ClearAllSelected();
|
||||
|
||||
|
|
Loading…
Reference in a new issue