- added some of the first frames (though still incomplete themselves) for the first character.

- changed pos and size data for hitboxes from double to float
This commit is contained in:
no
2021-06-10 02:38:47 +02:00
parent 1f0a14bb23
commit 10b3b60598
10 changed files with 270 additions and 28 deletions

View File

@ -19,7 +19,7 @@ public class TestEngine {
/*
OpenAl TEST
*/
SoundManager soundManager = new SoundManager();
/*SoundManager soundManager = new SoundManager();
soundManager.init();
SoundListener soundListener = new SoundListener();
@ -31,7 +31,7 @@ public class TestEngine {
soundSource.setBuffer(jumpSoundBuffer.getBufferId());
soundManager.addSoundSource("jump", soundSource);
// soundManager.playSoundSource("jump");
// soundManager.playSoundSource("jump");*/
/*
Engine Init
@ -163,7 +163,7 @@ public class TestEngine {
if (engine.shouldClose()) engine.setRunning(false);
}
soundManager.cleanup();
//soundManager.cleanup();
}