modules/world: make local the vx and vy variables
This commit is contained in:
parent
eddf66595c
commit
5eed16bac4
1 changed files with 1 additions and 2 deletions
|
@ -310,8 +310,7 @@ function BaseWorld:drawMap(id)
|
||||||
-- de position de camera pour afficher la carte par rapport à ces infos
|
-- de position de camera pour afficher la carte par rapport à ces infos
|
||||||
tx, ty = self.cameras:getViewCoordinate(id)
|
tx, ty = self.cameras:getViewCoordinate(id)
|
||||||
scale = self.cameras:getViewScale(id) or 1
|
scale = self.cameras:getViewScale(id) or 1
|
||||||
vx, vy = self.cameras:getOnScreenViewRelativePosition(id)
|
local vx, vy = self.cameras:getOnScreenViewRelativePosition(id)
|
||||||
print(tx + vx, ty + vy)
|
|
||||||
tx = math.floor(tx - math.abs(vx))
|
tx = math.floor(tx - math.abs(vx))
|
||||||
ty = math.floor(ty - math.abs(vy))
|
ty = math.floor(ty - math.abs(vy))
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue