0

我正在尝试检测玩家何时与平台接触,知道为什么这不起作用吗?

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");
    }
  }



}
}
4

1 回答 1

2

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

于 2013-06-22T09:18:55.587 回答