最新回答 / 东北大米3192142993
// 判断大鱼和果实的距离function momFruitsCollision() { for (var i = 0; i < fruit.num; i++) { if (fruit.alive[i]) { // calculate distance if (calLength2(fruit.x[i], fruit.y[i], mom.x, mom.y) < 900) { fruit.dead(i); } } }}是不是阈值舍设得太小了,太小了就不会被吃掉
2016-02-25
最赞回答 / 1307111376
ctx1.drawImage(this.bigEye, -this.bigEye * 0.5, -this.bigEye * 0.5); 写错了,应该是 ctx2.drawImage(this.bigEye, -this.bigEye.width * 0.5, -this.bigEye.height * 0.5);
2016-02-18
最新回答 / MrJaW
额····这个主要是看你代码到底怎么打的了,我个人猜的,你要是在main中声明了momObj为联系mom.js文件内容(momObj=new momObj();),只需要在init后面加上()就应该可以了,详细的不看你全代码,说不准······>.<
2016-02-09
最新回答 / 睡觉青蛙
fruitObj.prototype.born = function(i) { var aneId = Math.floor(Math.random() * ane.num); this.x[i] = ane.x[aneId]; this.y[i] = canH - ane.len[aneId]; this.l[i] = 0;其实我觉得这里把ane的实例化对象写进去是不妥的。, var aneId = Math.floor(Math.random() * ane.num); ...
2016-01-27