Gli ultimi tutorial di sviluppo web
 

HTML Gioco Bouncing


Questa piazza rossa rimbalza quando colpisce il pavimento:




Bouncing

Un altro functionallity vogliamo aggiungere è il bounce di proprietà.

Il bounce proprietà indica se il componente si riprenderà quando la gravità fa cadere a terra.

Il valore della proprietà di rimbalzo deve essere un numero. 0 non è un rimbalzo a tutti, e 1 farà il componente rimbalzare fino backto dove si cominciano a cadere.

Esempio

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