The textures of the mod blocks do not load in the game, this is the code:
The json
{ "forge_marker": 1, "defaults": { "model": "cube_all", "textures": { "all": "mymod:blocks/awacate_block" } } }
ModBlocks
package com.example.examplemod;
import com.example.examplemod.awacate.AwacateBlock;
import net.minecraftforge.fml.common.registry.GameRegistry;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
public class ModBlocks { @GameRegistry.ObjectHolder("mymod:awacate_block")
public static AwacateBlock awacateBlock;
@SideOnly(Side.CLIENT) public static void initModels() { awacateBlock.initModel(); } }
What is the error?