diff --git a/src/scenes/HuntingScene.js b/src/scenes/HuntingScene.js index c0d46c6..4b436c3 100644 --- a/src/scenes/HuntingScene.js +++ b/src/scenes/HuntingScene.js @@ -503,7 +503,7 @@ export default class HuntingScene extends Phaser.Scene { this.time.addEvent({ delay: 16, // ~60fps callback: () => { - this.cameraTime += 0.01; + this.cameraTime += 0.1; // Faster oscillation (~1 second period) // Smooth sine wave movement for natural ocean sway const swayX = Math.sin(this.cameraTime) * 25; // 25 pixels horizontal sway