碰撞功能Javascript

时间:2013-06-22 09:15:23

标签: javascript canvas

我正在尝试检测播放器何时与平台联系,知道为什么这不起作用?

http://taffatech.com/Platformer.html

function checkCol()
{
for (var i=0;i<Platforms.length;i++)
{ 

if(Player.x > i.x && Player.x  < (i.x + i.width))
  {
    if(Player.y > i.y && Player.y < (i.y + i.height))
    {
    alert("hit");
    }
  }



}
}

1 个答案:

答案 0 :(得分:2)

i只是一个数字。它没有widthheight。看起来您打算使用Platforms[i]代替。