delete another arg that can be deduced
[?]
May 19, 2022, 12:44 PM
B3IWYWSRDSZ7AG5HDS3TELNTG2IKRZYPI25B6LJGVFAJYTHVXZZACDependencies
- [2]
DLQMM265scroll past first page - [3]
YJGADSGKdelete unused arg - [4]
BULPIBEGbeginnings of a module for the text editor - [5]
XX7G2FFJintermingle freehand line drawings with text - [6]
XNFTJHC4split keyboard handling between Text and Drawing - [*]
OTIBCAUJlove2d scaffold
Change contents
- replacement in text.lua at line 6
function Text.draw(line, line_index, cursor_line, y, cursor_pos)function Text.draw(line, line_index, cursor_line, cursor_pos) - replacement in text.lua at line 9
love.graphics.draw(love_text, 25,y, 0, Zoom)love.graphics.draw(love_text, 25,line.y, 0, Zoom) - replacement in text.lua at line 12
love.graphics.print('_', Text.cursor_x(line.data, cursor_pos), y+6) -- drop the cursor down a bit to account for the increased font sizelove.graphics.print('_', Text.cursor_x(line.data, cursor_pos), line.y+6) -- drop the cursor down a bit to account for the increased font size - replacement in main.lua at line 133
Text.draw(line, line_index, Cursor_line, y, Cursor_pos)Text.draw(line, line_index, Cursor_line, Cursor_pos)