Guest User

Untitled

a guest
Dec 14th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public static void playSound(String name){
  2. try {
  3. FileInputStream fileInputStream = new FileInputStream("res/Sounds/Music/" + name + ".mp3");
  4. player = new Player(fileInputStream);
  5. player.play();
  6. } catch(FileNotFoundException e) {
  7. e.printStackTrace();
  8. } catch(JavaLayerException e) {
  9. e.printStackTrace();
  10. }
  11. }
  12.  
  13. new Player(fileInputStream, volume);
Add Comment
Please, Sign In to add comment