Examples of PacketAssemblerAnimation


Examples of appeng.core.sync.packets.PacketAssemblerAnimation

        try
        {
          TargetPoint where = new TargetPoint( worldObj.provider.dimensionId, xCoord, yCoord, zCoord, 32 );
          IAEItemStack item = AEItemStack.create( output );
          NetworkHandler.instance.sendToAllAround( new PacketAssemblerAnimation( xCoord, yCoord, zCoord, (byte) speed, item ), where );
        }
        catch (IOException e)
        {
          // ;P
        }
View Full Code Here

Examples of appeng.core.sync.packets.PacketAssemblerAnimation

    }
  }

  private void spawnAssembler(World worldObj, double posX, double posY, double posZ, Object o)
  {
    PacketAssemblerAnimation paa = (PacketAssemblerAnimation) o;

    AssemblerFX fx = new AssemblerFX( Minecraft.getMinecraft().theWorld, posX, posY, posZ, 0.0D, 0.0D, 0.0D, paa.rate, paa.is );
    Minecraft.getMinecraft().effectRenderer.addEffect( fx );
  }
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.