Examples of PacketParticle


Examples of org.getspout.spoutapi.packet.PacketParticle

   * Spawns this particle - making it visible to the given player
   * @param player to spawn the particle for
   */
  public void spawn(SpoutPlayer player) {
    if (player.isSpoutCraftEnabled() && player.getLocation().distance(location) <= range) {
      player.sendPacket(new PacketParticle(this));
    }
  }
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.