Package org.getspout.spoutapi.sound

Examples of org.getspout.spoutapi.sound.Music


  }

  @Override
  public void run(int playerId) {
    SpoutPlayer player = SpoutManager.getPlayerFromId(playerId);
    Music music = Music.getMusicFromId(id);
    if (player != null && music != null) {
      BackgroundMusicEvent event = new BackgroundMusicEvent(music, volumePercent, player);
      Bukkit.getServer().getPluginManager().callEvent(event);
      if (event.isCancelled()) {
        cancel = true;
View Full Code Here

TOP

Related Classes of org.getspout.spoutapi.sound.Music

Copyright © 2018 www.massapicom. 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.