Skip to content

Commit

Permalink
[bugfix] Opened the new Splashsound through the module descriptor and…
Browse files Browse the repository at this point in the history
… changed it for a wav version
  • Loading branch information
meronbrouwer committed Jun 21, 2024
1 parent 581f5a8 commit 1637bd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class SplashScene extends DynamicScene implements TimerContainer {
public void setupScene() {
setBrightness(-1);
setBackgroundImage("yaegerimages/splash-bg.jpg");
var splashSound = new SoundClip("yaegersounds/yaeger.mp3");
var splashSound = new SoundClip("yaegersounds/yaeger.wav");
splashSound.play();
}

Expand Down
1 change: 1 addition & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@
exports com.github.hanyaeger.core.media to com.google.guice;

opens yaegerimages;
opens yaegersounds;
}

0 comments on commit 1637bd9

Please sign in to comment.