Hey guys,
im currently playing music like this:
//try
File fland = new File(game.getRoot()+"./sounds/land.wav");
Uri uri = fland.toURI();
AudioClip land = Applet.newAudioClip(uri.toURL());
//catch
land.play();
but when many audioclips come after another the game lags and the sound gets messy.
is it the right way to do it with audioclips or is there a better method?
Moep