Block Attributes
textureFileFront
This attribute defines texture file that the block will use for its front side. Texture files for this attribute go into the assets/{mod name}/textures/blocks directory of your mod.
Examples
// Uses assets/{mod name}/textures/blocks/myBlockFront.png from the mod's directory
textureFileFront[0] = "myBlockFront.png";
// Uses assets/minecraft/textures/blocks/wood.png from the minecraft.jar
textureFileFront[1] = "/wood.png";
// Uses assets/SomeMod/textures/blocks/someBlock.png
textureFileFront[0] = "/SomeMod:someBlock.png";
textureFileFront[0] = "myBlockFront.png";
// Uses assets/minecraft/textures/blocks/wood.png from the minecraft.jar
textureFileFront[1] = "/wood.png";
// Uses assets/SomeMod/textures/blocks/someBlock.png
textureFileFront[0] = "/SomeMod:someBlock.png";