Build 29071489

This commit is contained in:
Renan LE CARO 2025-04-10 14:49:28 +02:00
parent 16880533dd
commit 9ae649743c
25 changed files with 367 additions and 10873 deletions

View file

@ -373,3 +373,12 @@ export function reasonLevelIsLocked(
};
}
}
export function ballTransparency(ball: Ball, gameState: GameState) {
return clamp(
gameState.perks.transparency * (1 - ball.y / gameState.gameZoneHeight) -
0.2,
0,
1,
);
}