私は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エントリ拡張するには、リストに新しい値を追加する必要があることを理解しています。私が達成しようとしているのは、画面のスコアにボールを追加することです。しかし、どうすればそれができるのかわかりません。
ありがとうございました