在某些背景下,我的物体动作受阻,而在其他背景下,物体却顺畅地移动,如何解决?

时间:2019-06-04 22:01:07

标签: python pygame png background-image pygame-surface

当我使用简单的背景制作时,我的对象可以平稳移动。而在另一个同样大小的背景上,对象也会抖动。这是什么问题?

This is the background that works

This is the one that doesn't

我尝试制作几乎与最初制作的背景相同的新背景(都在piskellapp上)。

我通过以下方式导入它:

background1 = pygame.image.load("bg3.png")

我的物体随之移动

if pressed_left:
     m_x -= 5
if pressed_right:
     m_x += 5
if pressed_up:
    m_y -= 5
if pressed_down:
    m_y += 5
#Where a key press makes a boolean value(pressed_left) True

0 个答案:

没有答案