love.js icon indicating copy to clipboard operation
love.js copied to clipboard

window.resizable in conf.lua

Open premek opened this issue 8 years ago • 0 comments

Using window.resizable=true in conf.lua does result in 1x1px canvas on the html page

function love.conf(t)
  t.window.fullscreen = false
  t.window.fullscreentype = "desktop"
  t.window.width = 700
  t.window.height = 500
  t.window.resizable = true
end

premek avatar Nov 19 '17 13:11 premek