We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f8d153 commit 3951bd9Copy full SHA for 3951bd9
1 file changed
js/classes/Game.js
@@ -1391,8 +1391,8 @@ export class Game {
1391
const BATCH_SIZE = 5;
1392
let frameIndex = 0;
1393
let breachFrame = -1;
1394
- // Only render 75% of breach animation - end at peak visual intensity
1395
- const breachFrameCount = Math.ceil(this.breachDuration * fps * 0.75);
+ // Only render 70% of breach animation - end at same frame as screenshot
+ const breachFrameCount = Math.ceil(this.breachDuration * fps * 0.7);
1396
1397
const processBatch = () => {
1398
return new Promise((resolve) => {
0 commit comments