TannerRogalsky / love.js

LÖVE ported to the web using Emscripten
MIT License
493 stars 53 forks source link

window.resizable in conf.lua #56

Open premek opened 6 years ago

premek commented 6 years ago

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