Adjust meow sound volume in cat-animation.js from 0.1 to 0.05 for improved audio balance.

This commit is contained in:
Mohammed Al-yaseen
2025-05-15 01:57:54 +03:00
parent 4b0cc378f9
commit 4cb683581a

View File

@@ -32,7 +32,7 @@ class Cat {
this.sounds.meow = new Audio('sounds/meow.wav'); this.sounds.meow = new Audio('sounds/meow.wav');
// Set volume for each sound // Set volume for each sound
this.sounds.meow.volume = 0.1; this.sounds.meow.volume = 0.05;
this.sounds.paw.volume = 0; this.sounds.paw.volume = 0;
// Add error handling for each sound // Add error handling for each sound