summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortylermurphy534 <tylermurphy534@gmail.com>2022-09-28 22:55:22 -0400
committertylermurphy534 <tylermurphy534@gmail.com>2022-09-28 22:55:22 -0400
commit078f97439844c723f33765e323019fc354976f80 (patch)
tree973e587376535c3165609d363e444b521c13694d
parentcooler chunk generation (diff)
downloadminecraftvulkan-078f97439844c723f33765e323019fc354976f80.tar.gz
minecraftvulkan-078f97439844c723f33765e323019fc354976f80.tar.bz2
minecraftvulkan-078f97439844c723f33765e323019fc354976f80.zip
re enable music
-rwxr-xr-xsrc/first_app.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/first_app.cpp b/src/first_app.cpp
index a20dcb0..e677d06 100755
--- a/src/first_app.cpp
+++ b/src/first_app.cpp
@@ -18,9 +18,9 @@ void FirstApp::run() {
SimpleRenderer renderer{xeEngine, Chunk::getTextures()};
- // xe::Sound sound{"res/sound/when_the_world_ends.wav"};
- // sound.setLooping(true);
- // sound.play();
+ xe::Sound sound{"res/sound/when_the_world_ends.wav"};
+ sound.setLooping(true);
+ sound.play();
KeyboardMovementController cameraController{xeEngine.getInput(), viewerObject};