您可以像this问题一样移动相机:
基本上,每个精灵都有一个位置,并在这样的屏幕上绘制:
then,相机跟随播放器这样的播放器:
width, height = sceen_size
camera_pos = (player.posX - width / 2, player.posY - height / 2)
在这种情况下,玩家留在屏幕的中心。
width, height = screen_size
if cameraX - playerX > 2 * width / 3: # player exits to the right
cameraX = playerX - 2 * width / 3
elif cameraX - playerX < width / 3: # player exits to the left
cameraX = playerX - width / 3
if cameraY - playerY > 2 * height / 3: # player exits to the bottom
cameraY = playerY - 2 * height / 3
elif cameraY - playerY < height / 3: # player exits to the top
cameraY = playerY - height / 3
在此示例中,玩家永远不会走出这个空间:您还可以使用更紧凑的形式:
width, height = screen_size
cameraX = min(max(cameraX, playerX - 2 * width / 3), playerX - width / 3)
cameraY = min(max(cameraY, playerY - 2 * height / 3), playerY - height / 3)
link
):