Block Attributes
textureFileYP
This attribute defines the texture file that the block will use for its y-positive (top) 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/myBlockTop.png from the mod's directory
textureFileYP[0] = "myBlockTop.png";
// ...
// Uses assets/minecraft/textures/blocks/wood.png from the minecraft.jar
textureFileYP[15] = "/wood.png";
// Uses assets/SomeMod/textures/blocks/someBlock.png
textureFileYP[0] = "/SomeMod:someBlock.png";
textureFileYP[0] = "myBlockTop.png";
// ...
// Uses assets/minecraft/textures/blocks/wood.png from the minecraft.jar
textureFileYP[15] = "/wood.png";
// Uses assets/SomeMod/textures/blocks/someBlock.png
textureFileYP[0] = "/SomeMod:someBlock.png";