当角落不相遇时,我不想要碰撞/碰撞

时间:2016-12-27 00:18:16

标签: python pygame

我的游戏就像汽车从上面飞来一样,玩家必须通过向左或向右移动来躲避它,

  • (x,y)是玩家位置
  • (enemy_startx,enemy_starty)是敌人的位置

其他变量显而易见

#These are also the crash conditions for the game.
    if y < enemy_starty+enemy_height:
        if x > enemy_startx  and x < enemy_startx + enemy_width or x+(car_width+5) > enemy_startx and x + (car_width+5) < enemy_startx+enemy_width:
             crash()

0 个答案:

没有答案