SoundBuffer, SoundListener, SoundManager, SoundSource, Correction d'un shader qui portait pas très bien son nom.

This commit is contained in:
Antoine
2021-05-29 00:36:33 +02:00
parent bd2a338370
commit 17ca8eedb7
9 changed files with 270 additions and 36 deletions

View File

@ -29,4 +29,8 @@ public class BufferUtils {
return result;
}
public static ByteBuffer StringToByteBuffer(String msg){
return ByteBuffer.wrap(msg.getBytes());
}
}