In your particular case, I also needed to add a check for the mouse that it was within bounds of the map. Check the attached file, it has the updated STI and it works well.

I submitted a real fix to this issue.ds84182 wrote:No, I managed to fix the problem though. framework.clear is called but it doesn't clear the actual canvas, instead it was clearing the screen.
Changing line 524 (approx.) in map.lua from:"map.lua : line 296 - attempt to index local 'tile' (a boolean value)"
Code: Select all
map[y][x] = false
Code: Select all
map[y][x] = nil
Code: Select all
x = x * self.width + tile.offset.x,
y = y * self.height + tile.offset.y,
Code: Select all
x = x * tile.width + tile.offset.x,
y = y * tile.height + tile.offset.y,
Code: Select all
local sti = require "sti"
function love.load()
-- Grab window size
windowWidth = love.graphics.getWidth()
windowHeight = love.graphics.getHeight()
-- Set world meter size (in pixels)
love.physics.setMeter(16)
-- Load a map exported to Lua from Tiled
map = sti.new("assets/maps/map1")
-- Prepare physics world (horizontal and vertical gravity)
world = love.physics.newWorld(0, 0)
-- Prepare collision objects
collision = map:initWorldCollision(world)
end
Code: Select all
Error: sti/map.lua:270: bad argument #1 to 'ipairs' (table expected, got nil)
stack traceback:
[C]: in function 'ipairs'
sti/map.lua:270: in function 'initWorldCollision'
main.lua:19: in function 'load'
[string "boot.lua"]:407: in function <[string "boot.lua"]:399>
[C]: in function 'xpcall'
Code: Select all
elseif tile.properties.collidable == "true" then
Code: Select all
elseif tile.properties.collidable == "true" and self.tileInstances[gid]~=nil then
Users browsing this forum: Ahrefs [Bot] and 11 guests