嗨,我有一个蛇游戏,它使用计时器来增加蛇的大小,我一直试图找出它的命中检测。并且已经到了这个阶段
for (var i = 1; i < snake.length; i++){ //this is where I am trying to make the hit
if (Math.floor(snake[0].x) == Math.floor(s.x) && Math.floor(snake[0].y) == Math.floor(s.y) ){
trace("hit");
}
}
这是我怎么做的吗?谢谢