原background.js:
function drawBackground(){
bgPic.onload=function(){
ctx2.drawImage(bgPic,0,0,canWidth,canHeight);
}
}
修改后的:
function drawBackground(){
ctx2.drawImage(bgPic,0,0,canWidth,canHeight);
}
解决了海葵透明度问题和漂浮直线问题
function drawBackground(){
bgPic.onload=function(){
ctx2.drawImage(bgPic,0,0,canWidth,canHeight);
}
}
修改后的:
function drawBackground(){
ctx2.drawImage(bgPic,0,0,canWidth,canHeight);
}
解决了海葵透明度问题和漂浮直线问题
2017-07-11
问题:果实上漂的时候一直绘制的是直线的问题?
解决:方案1. 每次在gameloop中都要先清屏,再进行绘制果实
方案2.将背景、海葵、果实都放在gameloop中,每次都重新绘制的话就会覆盖上一帧绘制的内容
亲测有效!!
解决:方案1. 每次在gameloop中都要先清屏,再进行绘制果实
方案2.将背景、海葵、果实都放在gameloop中,每次都重新绘制的话就会覆盖上一帧绘制的内容
亲测有效!!
2017-06-15