Examples of EntityBlock


Examples of buildcraft.core.EntityBlock

    }
  }

  @Override
  public EntityBlock newPumpTube(World w) {
    EntityBlock eb = super.newPumpTube(w);
    eb.texture = pumpTexture;
    return eb;
  }
View Full Code Here

Examples of buildcraft.core.EntityBlock

    return eb;
  }

  @Override
  public EntityBlock newDrill(World w, double i, double j, double k, double l, double d, double e) {
    EntityBlock eb = super.newDrill(w, i, j, k, l, d, e);
    eb.texture = drillTexture;
    return eb;
  }
View Full Code Here

Examples of buildcraft.core.EntityBlock

    return eb;
  }

  @Override
  public EntityBlock newDrillHead(World w, double i, double j, double k, double l, double d, double e) {
    EntityBlock eb = super.newDrillHead(w, i, j, k, l, d, e);
    eb.texture = drillHeadTexture;
    return eb;
  }
View Full Code Here

Examples of buildcraft.core.EntityBlock

    return FMLClientHandler.instance().getClient().thePlayer.getDisplayName();
  }

  @Override
  public EntityBlock newEntityBlock(World world, double i, double j,  double k, double iSize, double jSize, double kSize, LaserKind laserKind) {
    EntityBlock eb = super.newEntityBlock(world, i, j, k, iSize, jSize, kSize, laserKind);
    switch (laserKind) {
    case Blue:
      eb.texture = BuildCraftCore.blueLaserTexture;
      break;
View Full Code Here

Examples of buildcraft.core.EntityBlock

    return CoreProxy.buildCraftPlayer;
  }

  public EntityBlock newEntityBlock(World world, double i, double j, double k, double iSize, double jSize, double kSize, LaserKind laserKind) {
    return new EntityBlock(world, i, j, k, iSize, jSize, kSize);
  }
View Full Code Here

Examples of buildcraft.core.EntityBlock

      iSize = 0.10;
      jSize = 0.10;
    }

    EntityBlock block = CoreProxy.proxy.newEntityBlock(world, i, j, k, iSize, jSize, kSize, kind);
    block.setBrightness(210);

    world.spawnEntityInWorld(block);

    return block;
  }
View Full Code Here

Examples of buildcraft.core.EntityBlock

  public void initializeNEIIntegration() {
  }

  public EntityBlock newPumpTube(World w) {
        return new EntityBlock(w);
    }
View Full Code Here

Examples of buildcraft.core.EntityBlock

        return new EntityBlock(w);
    }

  public EntityBlock newDrill(World w, double i, double j, double k,
      double l, double d, double e) {
        return new EntityBlock(w, i, j, k, l, d, e);
    }
View Full Code Here

Examples of buildcraft.core.EntityBlock

        return new EntityBlock(w, i, j, k, l, d, e);
    }

  public EntityBlock newDrillHead(World w, double i, double j, double k,
      double l, double d, double e) {
        return new EntityBlock(w, i, j, k, l, d, e);
    }
View Full Code Here

Examples of net.sf.minuteProject.configuration.bean.presentation.EntityBlock

  public static EntityBlock getParentReferenceSymbols(Model model, Table table) {
    Presentation presentation = model.getConfiguration().getPresentation();
    for (Iterator iter = presentation.getPresentationBlocks().iterator(); iter.hasNext();) {
      for (Iterator iter2 = ((PresentationBlock)iter.next()).getEntityBlockss().iterator(); iter2.hasNext();)
        for (Iterator iter3 = ((EntityBlocks)iter2.next()).getEntityBlocks().iterator(); iter3.hasNext();) {
          EntityBlock entityBlock = (EntityBlock)iter3.next();
          if (entityBlock.getType()!= null && entityBlock.getName()!= null
            &&  entityBlock.getType().equals("entity-block-parent-reference")
            && entityBlock.getEntity().equals(table.getName()))
            return entityBlock;
        }
    }
    return null;
  }
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.