Examples of WallInfo


Examples of mods.railcraft.common.blocks.aesthetics.wall.WallInfo

    }

    @Override
    public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderBlocks) {
        int meta = world.getBlockMetadata(x, y, z);
        WallInfo wall = ((BlockRailcraftWall) block).proxy.fromMeta(meta);
        if (canRenderInPass(renderBlocks, wall)) {
            renderBlocks.renderBlockWall((BlockWall) block, x, y, z);
            return true;
        }
        return false;
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.