Package org.getspout.spoutapi.packet

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

Related Classes of org.getspout.spoutapi.packet.PacketParticle

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.