spell-cards.love/0046-on.load_settings

12 lines
279 B
Plaintext

on.load_settings = function(settings)
Font_height = settings.font_height
Line_height = settings.line_height
for _,w in ipairs(settings.words) do
new_word()
Cursor_word.contents = w
Cursor_word.lines[1].data = w
Text.redraw_all(Cursor_word)
end
Cursor_word = nil
end