Java Code Examples for net.minecraft.client.renderer.texture.TextureMap#locationBlocksTexture()
The following examples show how to use
net.minecraft.client.renderer.texture.TextureMap#locationBlocksTexture() .
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: ClientPhysic.java From Hyperium with GNU Lesser General Public License v3.0 | 4 votes |
private static ResourceLocation getEntityTexture() { return TextureMap.locationBlocksTexture; }
Example 2
Source File: RenderShip.java From archimedes-ships with MIT License | 4 votes |
@Override protected ResourceLocation getEntityTexture(Entity entity) { return TextureMap.locationBlocksTexture; }