You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
607 B
18 lines
607 B
function LoadMap(lvl)
|
|
local mapfilelocation = "maps/"
|
|
local extention = ".lua"
|
|
local mapname = mapfilelocation .. "map" .. lvl .. extention
|
|
|
|
GameMap = STI(mapname)
|
|
Walls = {}
|
|
if GameMap.layers["Walls"] then
|
|
for _, obj in ipairs(GameMap.layers["Walls"].objects) do
|
|
local wall = World:newRectangleCollider(obj.x, obj.y, obj.width, obj.height)
|
|
-- local wall =
|
|
-- World:newRectangleCollider(obj.x * _G.X_SCALE, obj.y * _G.Y_SCALE, obj.width * _G.X_SCALE, obj.height * _G.Y_SCALE)
|
|
wall:setType("static")
|
|
table.insert(Walls, wall)
|
|
Walls[#Walls]:setCollisionClass("Wall")
|
|
end
|
|
end
|
|
end
|
|
|