HELP ME im making a game but on the x postition the map is not colliding quick engine but it is on the y
HELP now my game does not workd
HELP now my game does not workd
QuickEngine in the function "Quick.spriteMapCollision = function(s,m)" checks if the collision occurs only when the value of the object's vx and vy fields is different from zero .
You have to stop moving the map in
file >> map >> function >> menuupdate
mapupdate = function()
end
and start moving the player in
file >> player >> function >> playerupdate
playerupdate = function()
player.vx = 60
......
end
Thanks