@websec007
2020-06-23T11:43:07.000000Z
字数 327
阅读 800
2020.Python从入门到实践
self.game_active = True (@game_stats.py)
如果飞船的数量不小于0个,则继续游戏;如果飞船的数量小于0或等于0了,则变更游戏属性值:
self.game_active = False (@ship_hit())
在游戏更新中,除事件更新不受“游戏属性”控制,其他游戏对象更新都要受到此控制。
if stats.game_active:
ship.update
gf.update_bullets()
gf.update_aliens()