mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-01-31 05:00:34 +00:00
Lowered the minimum segment length for the Draw Curve tool to 1
This commit is contained in:
parent
b27073aa40
commit
6388c93034
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
private readonly HintLabel hintlabel;
|
||||
private Curve curve;
|
||||
private static int segmentLength = 32;
|
||||
private const int MIN_SEGMENT_LENGTH = 16;
|
||||
private const int MIN_SEGMENT_LENGTH = 1;
|
||||
private const int MAX_SEGMENT_LENGTH = 4096; //just some arbitrary number
|
||||
|
||||
//interface
|
||||
|
|
Loading…
Reference in a new issue