diff --git a/src/scenes/MatchScene.ts b/src/scenes/MatchScene.ts index dbbc4ca..473592e 100644 --- a/src/scenes/MatchScene.ts +++ b/src/scenes/MatchScene.ts @@ -117,13 +117,18 @@ export class MatchScene extends Phaser.Scene { { onHit: (_f, ballBody) => this.handleFlipperHit('ai', ballBody) }, ); - // === Fixed bumpers (3 в центральной зоне, симметрично) === + // === Fixed bumpers (5, симметрично относительно центра по обеим осям) === // source = 'fixed_last_touch' → очки last-touch'еру (см. v3.10). + // Раскладка: 2 верхних + 1 центр + 2 нижних, зеркал относительно centerY. + // Зона y ∈ {centerY-80, centerY, centerY+80} = 560..720 при centerY=640. + // Не пересекается с AI setup (y≤300), player setup (y≥980), флипперами или touch zones. const cy = g.centerY; const fixedPositions: Array<[number, number]> = [ [GAME_WIDTH * 0.25, cy - 80], [GAME_WIDTH * 0.75, cy - 80], - [GAME_WIDTH * 0.5, cy + 80], + [GAME_WIDTH * 0.5, cy], + [GAME_WIDTH * 0.25, cy + 80], + [GAME_WIDTH * 0.75, cy + 80], ]; for (const [fx, fy] of fixedPositions) { this.fixedBumpers.push(