mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-05-01 09:19:13 -04:00
Build 29095000
This commit is contained in:
parent
096f7d4abd
commit
4c324d211c
27 changed files with 500 additions and 1350 deletions
|
@ -1265,7 +1265,6 @@ export function gameStateTick(
|
|||
// If you dont have buoy, we directly declare the coin "lost" to make it clear
|
||||
resetCombo(gameState, coin.x, coin.y);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (
|
||||
|
@ -1659,7 +1658,7 @@ export function ballTick(gameState: GameState, ball: Ball, frames: number) {
|
|||
speedLimitDampener += 3;
|
||||
|
||||
ball.vx +=
|
||||
(gameState.puckPosition > ball.x ? 1 :-1) *
|
||||
(gameState.puckPosition > ball.x ? 1 : -1) *
|
||||
frames *
|
||||
yoyoEffectRate(gameState, ball);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue