2.7 Blank Screen problem

If your maps aren’t loading on 2.7 or you are having problems with maps bigger than a single screen not displaying it is most likely down to the screen culling. Right now you have two options, firstly you can disable screen culling like this:

local lime = require("lime")  
lime.disableScreenCulling()  

This is actually recommend for smallish maps anyway as the screen culling would be an unnecessary overhead.

Or you could use it and in that case you will need to update your map like this:

  
local onUpdate = function(event)  
 map:update(event)  
end  
  
Runtime:addEventListener("enterFrame", onUpdate)  
  

[import]uid: 5833 topic_id: 6137 reply_id: 306137[/import]