0

我希望能够将按钮(38、40、37 和 39)更改为鼠标,这样我就不必使用箭头键了,因为我要更改这个,下一部分将毫无意义,我想知道为什么当我向下和向右时,它会使用函数 reset() 进行重置;但是当我向左和向上时它不会?它只是不断滚动

    // Update game objects
var update = function (modifier) {
    if (38 in keysDown) { // Player holding up
        hero.y -= hero.speed * modifier;
        if(hero.y > canvas.height){
            reset();
        }
    }
    if (40 in keysDown) { // Player holding down
        hero.y += hero.speed * modifier;
        if(hero.y > canvas.height){
            reset();
        }
    }
    if (37 in keysDown) { // Player holding left
        hero.x -= hero.speed * modifier;
        if(hero.x > canvas.width){
            reset();
        }
    }
    if (39 in keysDown) { // Player holding right
        hero.x += hero.speed * modifier;
        if(hero.x > canvas.width){
            reset();
        }
    }
4

1 回答 1

1

它一直在向左和向上滚动,因为在您的 if 语句中,您似乎正在检查左/右和上/下的相同边界。要向左走,您必须检查英雄的 x 位置是否小于左边界(通常为 0)。上升时,您必须检查英雄的 y 位置是否小于顶部边界(通常也为 0)。

// Check if hero exceeds top boundary
if (hero.y < 0) {
    reset();
}

// Check if hero exceeds left boundary
if (hero.x < 0) {
    reset();
}
于 2013-05-29T09:19:55.287 回答