There's been lots of activity on the Forum and I'm behind, so I don't know if anyone else has noticed this or not, but when I place the dungeon_wall_lantern on a dungeon_wall, it sure looks to me like it is floating just in front of the wall and not on it. So, here is a little code to move them back against the wall, just in case it bothers you.
Code: Select all
function adjustIt()
local num, bad, obj, val, ix, dx, dy
num = 0
bad = 2
while bad > 0 do
num = num + 1
obj = findEntity("dungeon_wall_lantern_" .. num)
if obj ~= nil then
val = obj:getWorldPosition()
val[2] = val[2] + .7
ix = (3 - (obj.facing % 2) * 2)
dx, dy = getForward(obj.facing)
val[ix] = val[ix] + .21 * (dx - dy)
obj:setWorldPosition(val)
else
bad = bad - 1
end
end
end