最新のWeb開発のチュートリアル
 

HTMLゲーム跳ねます


それが床に当たったときに、この赤い四角はバウンス:




跳ねます

我々は追加したい別のfunctionallityは、 bounceプロパティ。

bounce重力は、それが地面に落下させるときに、コンポーネントが立ち直るかどうプロパティが示しています。

バウンスプロパティ値は数値でなければなりません。 0はまったくバウンスがなく、1コンポーネントは、それが落下開始すべての方法backtoをバウンスになります。

function component(width, height, color, x, y, type) {
    this.type = type;
    this.width = width;
    this.height = height;
    this.x = x;
    this.y = y;
    this.speedX = 0;
    this.speedY = 0;
    this.gravity = 0.1;
    this.gravitySpeed = 0;
    this.bounce = 0.6;
   
this.update = function() {
        ctx = myGameArea.context;
        ctx.fillStyle = color;
        ctx.fillRect(this.x, this.y, this.width, this.height);
    }
    this.newPos = function() {
        this.gravitySpeed += this.gravity;
        this.x += this.speedX;
        this.y += this.speedY + this.gravitySpeed;
        this.hitBottom();
    }
    this.hitBottom = function() {
        var rockbottom = this.gamearea.canvas.height - this.height;
        if (this.y > rockbottom) {
            this.y = rockbottom;
            this.gravitySpeed = -(this.gravitySpeed * this.bounce);
        }
    }
}
»それを自分で試してみてください