carousel.love/0031-on.resize

11 lines
651 B
Plaintext

on.resize = function()
_, _, Safe_width, Safe_height = love.window.getSafeArea()
Current_pane.editor_state.right = math.min(100+30*App.width('m'), Safe_width*2/3)
Current_pane.editor_state.width = Current_pane.editor_state.right - Current_pane.editor_state.left
Current_pane.editor_state.bottom = Safe_height/2-5
Text.redraw_all(Current_pane.editor_state)
Current_pane.output_editor_state.top = Current_pane.editor_state.bottom+5+10+5
Current_pane.output_editor_state.right = Current_pane.editor_state.right
Current_pane.output_editor_state.width = Current_pane.editor_state.width
Current_pane.output_editor_state.bottom = Safe_height - 5
end