driver.love/0028-A

14 lines
423 B
Plaintext

A = function()
-- print('A')
love.graphics.setFont(love.graphics.newFont(scale(20))) -- editor objects implicitly depend on current font
-- translate Definitions to Surface
Surface = {}
for key,node in pairs(Definitions) do
node.key = key
compute_layout(node, node.x,node.y, Surface, skip_updating_screen_top_for)
end
-- continue the pipeline
B()
-- TODO: ugly that we're manipulating editor objects twice
end