我有这个动画角色,每次按下导航键时都会改变。
这个角色可以跳跃,但如果我尝试使用spaceBar
+ rightKey
。我没有预料到任何事情都会发生。
角色跳跃正常,不right
跳跃。
我想-
我试图在窗口中添加一个框,这样这个角色就不会越过这个框,他只能跳过/走过它。我想绑定键以使他定向跳跃。
代码-
if(spaceBar)
{
box.stop(true,false).animate({top:xPos-50},10, function(){
box.animate({top:xPos},100);
})
我试过
if(spaceBar,rightKey)
{
box.stop(true,false).animate({top:xPos-50},10, function(){
box.animate({top:xPos},100);
})
但这并没有起到作用。
了解更多信息-