Package org.spoutcraft.client.sound

Examples of org.spoutcraft.client.sound.QueuedSound.run()


      return;
    }
    File song = FileUtil.findFile(plugin, fileName);
    if (song != null && song.exists()) {
      QueuedSound action = new QueuedSound(song, x, y, z, volume, distance, soundEffect);
      action.run();
      return;
    } else {
      song = new File(directory, fileName);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.