diff options
| author | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-28 22:55:22 -0400 |
|---|---|---|
| committer | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-28 22:55:22 -0400 |
| commit | 078f97439844c723f33765e323019fc354976f80 (patch) | |
| tree | 973e587376535c3165609d363e444b521c13694d | |
| parent | cooler chunk generation (diff) | |
| download | minecraftvulkan-078f97439844c723f33765e323019fc354976f80.tar.gz minecraftvulkan-078f97439844c723f33765e323019fc354976f80.tar.bz2 minecraftvulkan-078f97439844c723f33765e323019fc354976f80.zip | |
re enable music
| -rwxr-xr-x | src/first_app.cpp | 6 |
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}; |