Skip to content

Commit

Permalink
feat(sound-effects): adjust notes duration in sound effect for winning
Browse files Browse the repository at this point in the history
  • Loading branch information
icelam committed Sep 22, 2022
1 parent ad3a938 commit 91225a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/assets/js/SoundEffects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ export default class SoundEffects {
}

const musicNotes: SoundSeries[] = [
{ key: 'C4', duration: 0.2 },
{ key: 'D4', duration: 0.2 },
{ key: 'E4', duration: 0.2 },
{ key: 'G4', duration: 0.225 },
{ key: 'C4', duration: 0.175 },
{ key: 'D4', duration: 0.175 },
{ key: 'E4', duration: 0.175 },
{ key: 'G4', duration: 0.275 },
{ key: 'E4', duration: 0.15 },
{ key: 'G4', duration: 0.9 }
];
const totalDuration = musicNotes
Expand Down

0 comments on commit 91225a3

Please sign in to comment.