some missing transitions
[?]
May 16, 2022, 5:18 AM
PLLSUOCI777X65MERQPO5FHR7YJVDLVOX2NGMSCJEFLWIJ5MDEJQCDependencies
- [2]
RXE6NQTNchanging your mind mid-shape - [3]
HWPK4SMPnew mode: manhattan - [4]
KCIM5UTVrevert: back to freehand - [5]
NL5J7Z5Hnew mode: polygon - [6]
ZOOY3ME4new mode: circle arc - [7]
H7OEU6WPexperimental approach to combining keyboard and mouse while drawing - [*]
OTIBCAUJlove2d scaffold
Change contents
- replacement in main.lua at line 516
if drawing.pending.mode == 'line' thendrawing.pending.vertices = {drawing.pending.p1}if drawing.pending.mode == 'freehand' thendrawing.pending.vertices = {insert_point(drawing.points, drawing.pending.points[1].x, drawing.pending.points[1].y)}elseif drawing.pending.mode == 'line' or drawing.pending.mode == 'manhattan' thenif drawing.pending.vertices == nil thendrawing.pending.vertices = {drawing.pending.p1}end - replacement in main.lua at line 544
if drawing.pending.mode == 'line' thenif drawing.pending.mode == 'freehand' thendrawing.pending.center = insert_point(drawing.points, drawing.pending.points[1].x, drawing.pending.points[1].y)elseif drawing.pending.mode == 'line' or drawing.pending.mode == 'manhattan' then - edit in main.lua at line 559
elseif drawing.pending.mode == 'polygon' thendrawing.pending.p1 = drawing.pending.vertices[1] - replacement in main.lua at line 572
if drawing.pending.mode == 'line' thenif drawing.pending.mode == 'freehand' thendrawing.pending.p1 = insert_point(drawing.points, drawing.pending.points[1].x, drawing.pending.points[1].y)elseif drawing.pending.mode == 'line' then