Ce carré rouge rebondit quand il frappe le sol:
rebondi
Une autre functionallity nous voulons ajouter est le bounce
des biens.
Le bounce
propriété indique si le composant va rebondir quand la gravité fait tomber à terre.
La valeur de la propriété de rebond doit être un nombre. 0 est pas du tout rebond et 1 fera le composant rebondir tout le chemin backto où il commence tomber.
Exemple
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);
}
}
}
Essayez - le vous - même »