From d9b5f309d2b465999b0fa533c2849ca328cc5bb1 Mon Sep 17 00:00:00 2001 From: "Z. Cliffe Schreuders" Date: Sat, 23 Aug 2025 11:46:25 +0100 Subject: [PATCH] Adjust KEY_SHRINK_FACTOR in lockpicking-game-phaser.js to improve key rotation simulation. This change enhances the visual representation of the key during gameplay, contributing to a more realistic user experience. --- js/minigames/lockpicking/lockpicking-game-phaser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/minigames/lockpicking/lockpicking-game-phaser.js b/js/minigames/lockpicking/lockpicking-game-phaser.js index 8845d3c..cb29f03 100644 --- a/js/minigames/lockpicking/lockpicking-game-phaser.js +++ b/js/minigames/lockpicking/lockpicking-game-phaser.js @@ -1260,7 +1260,7 @@ export class LockpickingMinigamePhaser extends MinigameScene { const KEY_PIN_TOTAL_SHRINK = KEY_PIN_TOP_SHRINK + KEY_PIN_BOTTOM_SHRINK; // Total key pin shrink const CHANNEL_MOVEMENT = 25; // How much channels move down const KEYWAY_SHRINK = 20; // How much keyway shrinks - const KEY_SHRINK_FACTOR = 0.85; // How much the key shrinks on Y axis to simulate rotation + const KEY_SHRINK_FACTOR = 0.7; // How much the key shrinks on Y axis to simulate rotation // Play success sound if (this.sounds.success) {