how can im make input goes under last line of output ?
Posted: Mon May 01, 2023 12:48 pm
im making a fantasy console but im want when user enters command it automaticly goes under output
heres what i tried so far
heres what i tried so far
Code: Select all
function love.draw()
local outputHeight = font:getHeight(output)
love.graphics.print(output, 10, 10)
love.graphics.print(input, 10, 20 + outputHeight)
end