Block Attributes
textureFileBack
This attribute defines texture file that the block will use for its back 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/myBlockBack.png from the mod's directory
textureFileBack[0] = "myBlockBack.png";
// Uses assets/minecraft/textures/blocks/wood.png from the minecraft.jar
textureFileBack[1] = "/wood.png";
// Uses assets/SomeMod/textures/blocks/someBlock.png
textureFileBack[0] = "/SomeMod:someBlock.png";
textureFileBack[0] = "myBlockBack.png";
// Uses assets/minecraft/textures/blocks/wood.png from the minecraft.jar
textureFileBack[1] = "/wood.png";
// Uses assets/SomeMod/textures/blocks/someBlock.png
textureFileBack[0] = "/SomeMod:someBlock.png";