我创建了一个pygame,游戏的目的是避免球在屏幕上移动(随机)
ballpic = pygame.image.load('ball.png').convert_alpha()
我有一个水平功能:
def levels(score):
global enemies
global velocity
enemies = enemies
velocity = velocity
#level one
if score >= 500:
enemies = 6
velocity = 2
#level two
if score >= 1000:
enemies = 6
velocity = 2
#....And so on
带有缩进的游戏:///已过期/
如果我尝试这样做,我会收到此错误:
Traceback (most recent call last):
File "C:\Users\MO\Desktop\Twerk\twerk-bck.py", line 252, in <module>
game()
File "C:\Users\MO\Desktop\Twerk\twerk-bck.py", line 199, in game
positionx[i]=positionx[i]+positionxmove[i]
IndexError: list index out of range
我知道我需要将新值附加到列表中以将它们扩展 3 个条目。我想要实现的是在屏幕上添加更多的球,得分达到一定的数字。但我不知道我该怎么做?
谢谢