Java Code Examples for net.minecraft.util.EnumBlockRenderType#ENTITYBLOCK_ANIMATED
The following examples show how to use
net.minecraft.util.EnumBlockRenderType#ENTITYBLOCK_ANIMATED .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BlockStoneMortar.java From Sakura_mod with MIT License | 4 votes |
@Override public EnumBlockRenderType getRenderType(IBlockState state) { return EnumBlockRenderType.ENTITYBLOCK_ANIMATED; }
Example 2
Source File: BlockCrusherBlade.java From GregTech with GNU Lesser General Public License v3.0 | 4 votes |
@Override public EnumBlockRenderType getRenderType(IBlockState state) { return EnumBlockRenderType.ENTITYBLOCK_ANIMATED; }
Example 3
Source File: BlockGenerator.java From YouTubeModdingTutorial with MIT License | 4 votes |
@Override public EnumBlockRenderType getRenderType(IBlockState state) { return EnumBlockRenderType.ENTITYBLOCK_ANIMATED; }
Example 4
Source File: BlockInfestedLeaves.java From ExNihiloAdscensio with MIT License | 4 votes |
public EnumBlockRenderType getRenderType(IBlockState state) { return EnumBlockRenderType.ENTITYBLOCK_ANIMATED; }