much better help color and copy
[?]
May 17, 2022, 3:32 PM
NW7X4AGMEDHAVLRUK5BPOQD55JRVSIM6SKOLPCI6AUK7WIKV6VPACDependencies
- [2]
M36DBSDEbit more polish to help screen - [3]
CXCAERTBicons for current_mode - [4]
V5TP27FPctrl-+ and ctrl-- to adjust font size - [5]
JS6JSYOTonline contextual help - [6]
6J6EEUAYrespect zoom when printing online help - [7]
IK3N7J3Breset zoom - [*]
OTIBCAUJlove2d scaffold
Change contents
- replacement in main.lua at line 1077
love.graphics.print("* Press the mouse button to start drawing a "..current_shape_singular(), 16+30,y, 0, zoom)love.graphics.print("* Press the mouse button to start drawing a "..current_shape(), 16+30,y, 0, zoom) - replacement in main.lua at line 1113
love.graphics.rectangle('line', 16,drawing.y, drawingw, math.max(pixels(drawing.h),y-drawing.y))love.graphics.setColor(0,0.5,0, 0.1)love.graphics.rectangle('fill', 16,drawing.y, drawingw, math.max(pixels(drawing.h),y-drawing.y)) - edit in main.lua at line 1119
love.graphics.rectangle('line', 16,drawing.y, drawingw,pixels(drawing.h)) - replacement in main.lua at line 1120
love.graphics.print("You're currently drawing "..current_shape_pluralized(), 16+30,y, 0, zoom)love.graphics.print("You're currently drawing a "..current_shape(drawing.pending), 16+30,y, 0, zoom) - replacement in main.lua at line 1125
love.graphics.print('* Release the mouse button to finish drawing a freehand stroke', 16+30,y, 0, zoom)love.graphics.print('* Release the mouse button to finish drawing the stroke', 16+30,y, 0, zoom) - replacement in main.lua at line 1128
love.graphics.print('* Release the mouse button to finish drawing a line', 16+30,y, 0, zoom)love.graphics.print('* Release the mouse button to finish drawing the line', 16+30,y, 0, zoom) - replacement in main.lua at line 1132
love.graphics.print('* Release the mouse button to finish drawing a full circle', 16+30,y, 0, zoom)love.graphics.print('* Release the mouse button to finish drawing the circle', 16+30,y, 0, zoom) - replacement in main.lua at line 1136
love.graphics.print('* Release the mouse button to finish drawing an arc', 16+30,y, 0, zoom)love.graphics.print('* Release the mouse button to finish drawing the arc', 16+30,y, 0, zoom) - replacement in main.lua at line 1140
love.graphics.print('* Release the mouse button to finish drawing a polygon', 16+30,y, 0, zoom)love.graphics.print('* Release the mouse button to finish drawing the polygon', 16+30,y, 0, zoom) - edit in main.lua at line 1164
love.graphics.setColor(0,0.5,0, 0.1)love.graphics.rectangle('fill', 16,drawing.y, drawingw, math.max(pixels(drawing.h),y-drawing.y)) - replacement in main.lua at line 1168
function current_shape_singular()function current_shape(shape) - edit in main.lua at line 1175
elseif current_mode == 'circle' and shape and shape.start_angle thenreturn 'arc' - edit in main.lua at line 1182
function current_shape_pluralized()return current_shape_singular()..'s'end