Проблема с текстурами

Статус
В этой теме нельзя размещать новые ответы.
Версия Minecraft
1.7.10
30
0
Уже не могу,пробовал на двух компах, а результата нету.
Не грузит текстурку блока.Я менял название modid,менял назв картинки,в коде все менял.
Вроде бы сделал релоад в eclipse.Помогите

текстурка находится в src/main/resources/assets/Experiment/textures/blocks

Main:
package ua.laker.Experiment;


import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;

@Mod(modid = Main.MODID, name = Main.MODNAME, version = Main.VERSION)
public class Main {
          
    public static final CreativeTabs tabExperiment = new CreativeTabs("Experiment") {
        public Item getTabIconItem() {
            return Item.getItemFromBlock(Blocks.diamond_ore);
        }
    };
    
    
    
    public static final String MODID = "Experiment";
    public static final String MODNAME = "ExperimentName";
     public static final String VERSION = "1.1.0";
    
     public static Block experimentBlock;


     @EventHandler
     public void preInit(FMLPreInitializationEvent event) {
          experimentBlock = new ExperimentBlocks(Material.rock, "experimentBlock", "experimentBlock");
          GameRegistry.registerBlock(experimentBlock, "experimentBlock");
     }
    
    
    
    
    
    
};
ExperimentBlocks:
package ua.laker.Experiment;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;

public class ExperimentBlocks extends Block {

    protected ExperimentBlocks(Material p_i45394_1_, String name, String texture) {
        super(p_i45394_1_);       
        // TODO Auto-generated constructor stub
        this.setBlockName(name);
        this.setBlockTextureName(Main.MODID+":"+texture);
        this.setHardness(2.0F);
        this.setHarvestLevel("pickaxe", 2);
        this.setCreativeTab(Main.tabExperiment);
        this.setResistance(10F);
        this.setLightLevel(40F);
        
        
    }

}
 
Краш-лог
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN experiment
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: domain experiment is missing 1 texture
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: domain experiment is missing a resource manager - it is probably a side-effect of automatic texture processing
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain experiment are:
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/experimentBlock.png
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain experiment
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
Краш-лог:
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN experiment
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]:   domain experiment is missing 1 texture
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]:     domain experiment is missing a resource manager - it is probably a side-effect of automatic texture processing
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain experiment are:
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/experimentBlock.png
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain experiment
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[21:13:42] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
Статус
В этой теме нельзя размещать новые ответы.
Сверху