
Code: Select all
for i = 0, 3 do
ctl = spawn("lever", self.go.level, self.go.x, self.go.y, i, self.go.elevation, self.go.id .."_lever_"..i)
pos = ctl:getWorldPosition()
j = i % 2 * 2 + 1
pos[j] = pos[j] + .4
ctl:setWorldPosition(pos)
end
Code: Select all
for i = 0, 3 do
ctl = spawn("lever", self.go.level, self.go.x, self.go.y, i, self.go.elevation, self.go.id .."_lever_"..i)
pos = ctl:getWorldPosition()
j = i % 2 * 2 + 1
pos[j] = pos[j] + .4
ctl:setWorldPosition(pos)
end
Thank you Blichew! That's exactly the hint I needed. Even if you get use getWorldPosition and immediately call setWorldPosition with the unaltered vector returned from the get, the buttons are slightly behind the walls. The adjustment did the trick, so I'm back on course. Thank you! -LarkBlichew wrote:... had to be lowered by 0.0001 or something.