シンプルなレベルシステムを素晴らしいものにします。スコア変数が特定の数値に達すると、敵 (ボール) と速度 (速度) が増加します。例:
if score >= 500:
enemies=6
velocity=2
私はいくつかの方法を試しました.私の最初の試みは私のゲームループ内の上記のようなものでしたが、私はその場でそれを変更することができませんでした.エラー:
Traceback (most recent call last):
File "C:\Users\MO\Desktop\Twerk\ballbounce_changed.py", line 233, in <module>
game()
File "C:\Users\MO\Desktop\Twerk\ballbounce_changed.py", line 182, in game
positionx[i]=positionx[i]+positionxmove[i]
IndexError: list index out of range
うまくいかなかった他の方法も試しました。レベルシステムの実装を手伝ってください。私のゲームコードはここにあります: http://pastebin.com/nhqKdR19
ありがとうございました