分数

首先增加一个分数的变量,初始为0:

score=0

接下来,在draw中,增加一个绘制分数的代码:

print("SCORE "..score,10,20,12)

相应的,在碰撞检测中,对于子弹消灭敌人时,让score分数自增,知道到这段代码:

if v.r=="b" and vv.r=="e" then
   v.die=true
   vv.die=true
end

变为

if v.r=="b" and vv.r=="e" then
   v.die=true
   vv.die=true
   score=score+1
end

现在效果如下: