为什么我这阴影加不上啊?

来源:2-7 游戏分值计算(2)

qq_蓝色水晶雨_03819317

2016-10-12 13:51

ctx1.save();
    ctx1.shadowBlur= 10;
    ctx1.shadowColor ='#fff';
    //ctx1.shadowBlur = 10;
    //ctx1.shadowColor = "white";
    ctx1.fillStyle = "white";
    ctx1.fillText("SCORE: " + this.score, w * 0.5 , h-20);
    if(this.gameOver){
        this.alpha += deltaTime * 0.0005;
        if(this.alpha > 1){
            this.alpha = 1;
        }
        ctx1.fillStyle = "rgba(255,255,255," + this.alpha + ")";
        ctx1.fillText("GAME OVER", w * 0.5 , h * 0.5);
    }
    ctx1.restore();

写回答 关注

2回答

  • qq_蓝色水晶雨_03819317
    2016-10-14 14:44:24

    没有  一切正常

  • budflower
    2016-10-14 14:28:28

    这段没有错啊,你在控制台看看提示什么错误?

HTML5小游戏---爱心鱼(下)

通过一个清新美好的小游戏教程,熟悉游戏开发流程

46272 学习 · 189 问题

查看课程

相似问题