Skip to content

Commit 98c65b8

Browse files
Replace placeholder sounds with actual fnf
I took those sounds from the same psych build I charted unpredictable 6 in
1 parent d486a32 commit 98c65b8

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

assets/sounds/cancelMenu.ogg

11.2 KB
Binary file not shown.

assets/sounds/confirmMenu.ogg

30.9 KB
Binary file not shown.

assets/sounds/scrollMenu.ogg

8.89 KB
Binary file not shown.

src/Main.hx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ class Main extends Application
199199
}
200200

201201
private function createSounds() {
202-
sound_scrollIdx = MiniAudio.loadSoundEffect(Paths.asset("assets/conductor/measure.wav"));
203-
sound_confIdx = MiniAudio.loadSoundEffect(Paths.asset("assets/conductor/beat.wav"));
204-
sound_cancelIdx = MiniAudio.loadSoundEffect(Paths.asset("assets/conductor/beat.wav"));
202+
sound_scrollIdx = MiniAudio.loadSoundEffect(Paths.asset("assets/sounds/scrollMenu.ogg"));
203+
sound_confIdx = MiniAudio.loadSoundEffect(Paths.asset("assets/sounds/confirmMenu.ogg"));
204+
sound_cancelIdx = MiniAudio.loadSoundEffect(Paths.asset("assets/sounds/cancelMenu.ogg"));
205205
}
206206

207207
public function playScrollSound() {

0 commit comments

Comments
 (0)