01-07-2013, 09:34 AM
Et après tu peux rajouter 4 if pour caler la map dans un coin du canvas si le joueur est au bord :
Code :
if(playerTop <= map.height / 2) map.position.top = 0;
if(playerRight <= map.width / 2) map.position.left = (gameWidth - mapWidth);
if(playerBottom <= map.height / 2) map.position.top = (gameHeight - mapHeight);
if(playerLeft <= map.width / 2) map.position.left = 0;