Skip to content

Commit

Permalink
fix(sounds): decrease volume of sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Nov 19, 2024
1 parent 3db103d commit 2e17a80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/sounds/confirmation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ export const confirmation = new Howl({
'/sounds/confirmation.ogg',
'/sounds/confirmation.mp3',
],
volume: 0.5,
});
1 change: 1 addition & 0 deletions src/sounds/drop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ import { Howl } from 'howler';

export const drop = new Howl({
src: ['/sounds/drop.webm', '/sounds/drop.ogg', '/sounds/drop.mp3'],
volume: 0.5,
});
1 change: 1 addition & 0 deletions src/sounds/tick.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ import { Howl } from 'howler';

export const tick = new Howl({
src: ['/sounds/tick.webm', '/sounds/tick.ogg', '/sounds/tick.mp3'],
volume: 0.3,
});

0 comments on commit 2e17a80

Please sign in to comment.