in the meantime i edited update.lua like this…
i commented out part of it. dont think this is a great permanent solution… but itll hold me over until caleb gets back to me
-- if enableCulling then if not lib\_culling then lib\_culling = require("Dusk.dusk\_core.run.culling") end culling = lib\_culling.addCulling(map) map.\_culling = culling culling.screenCullingField.x, culling.screenCullingField.y = screen.centerX, screen.centerY culling.screenCullingField.initialize() for layer in map.objectLayers() do layer.\_buildAllObjectDatas() end for layer, i in map.layers() do if not culling.screenCullingField.layer[i] then if layer.\_layerType == "tile" then layer.\_edit(1, map.data.mapWidth, 1, map.data.mapHeight, "d") elseif layer.\_layerType == "object" then layer.\_buildAllObjects() end end end -- else -- for layer in map.tileLayers() do -- layer.\_edit(1, map.data.mapWidth, 1, map.data.mapHeight, "d") -- end -- for layer in map.objectLayers() do -- layer.draw(1, map.data.mapWidth, 1, map.data.mapHeight) -- end -- end