Problems with LOVE 11 on Win 10
Posted: Fri Jul 06, 2018 3:48 pm
I can only get console by running lovec in 11.1, it works with 11.0.
I can't run love files "boot.lua:479: No code to run" in 11.0 and 11.1.
If I run this code the first rectangle will be red and the second rectangle white, in 11.0 and 11.1.
I can't run love files "boot.lua:479: No code to run" in 11.0 and 11.1.
If I run this code the first rectangle will be red and the second rectangle white, in 11.0 and 11.1.
Code: Select all
function love.draw()
love.graphics.setColor(255,0,0)
love.graphics.rectangle("fill", love.graphics.getWidth()/2, 0, love.graphics.getWidth(), love.graphics.getHeight()
love.graphics.setColor(love.math.random(255), love.math.random(255), love.math.random(255))
love.graphics.rectangle("fill", 0, 0, love.graphics.getWidth()/2, love.graphics.getHeight())
end