Package appeng.tile.spatial

Examples of appeng.tile.spatial.TileSpatialIOPort


  }

  @Override
  public final void onNeighborBlockChange(World w, int x, int y, int z, Block junk)
  {
    TileSpatialIOPort te = getTileEntity( w, x, y, z );
    if ( te != null )
      te.updateRedstoneState();
  }
View Full Code Here


  public boolean onActivated(World w, int x, int y, int z, EntityPlayer p, int side, float hitX, float hitY, float hitZ)
  {
    if ( p.isSneaking() )
      return false;

    TileSpatialIOPort tg = getTileEntity( w, x, y, z );
    if ( tg != null )
    {
      if ( Platform.isServer() )
        Platform.openGUI( p, tg, ForgeDirection.getOrientation( side ), GuiBridge.GUI_SPATIAL_IO_PORT );
      return true;
View Full Code Here

TOP

Related Classes of appeng.tile.spatial.TileSpatialIOPort

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.