试图在pygame上做一个自上而下的射手,并在玩家移动时试图弄清楚如何滚动地图时遇到了麻烦 我目前正在尝试制作一个自上而下的射击游戏,但是当角色移动时(向上,向下,左和右)时,我遇到了一些麻烦,试图弄清楚如何移动地图。我想要地图...

问题描述 投票:0回答:1

您可以像this问题一样移动相机:

基本上,每个精灵都有一个位置,并在这样的屏幕上绘制:
python pygame
1个回答
0
投票

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

):

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.