Open-Terrarium/creating_map_save.lua
2017-07-12 05:25:10 -04:00

9 lines
214 B
Lua

savechannel = love.thread.getChannel("save")
dofile("tserial.lua")
while true do
if savechannel:getCount( ) > 0 then
love.filesystem.write( "/map/"..chunkx+xx.."_"..chunky+yy..".txt", TSerial.pack(tiles))
end