Jump to content

The Model Doesn't Register


Recommended Posts

Im trying to register model for my item but it doesn't works.
First I Created a class where i declared all my items.
 

public class ModItems {
	
	public static final List<Item> ITEMS = new ArrayList<Item>();
	
	public static final Item MY_ITEM = new MyItemClass();
	
}

Then I created the MyItemClass where i describe my item.

public class MyItemClass extends Item {
	public MyItemClass() {
		this.setRegistryName("my_item");
		this.setUnlocalizedName("my_item");
		this.setCreativeTab(CreativeTabs.COMBAT);
		ModItems.ITEMS.add(this);
	}
}

And The i created a class where i was trying register the model and where i registered my item

@Mod.EventBusSubscriber
public class EventsHandler {
	@SubscribeEvent
	public void registerItems(RegistryEvent.Register<Item> event) {
		event.getRegistry().register(new MyItemClass());
	}
	
	@SubscribeEvent
	@SideOnly(Side.CLIENT)
	public static void onRegistryModel(ModelRegistryEvent event) {
		registryModel(new MyItemClass());
	}
	
	@SideOnly(Side.CLIENT)
	private static void registryModel(Item item) {
		final ResourceLocation regName = item.getRegistryName();
		final ModelResourceLocation mr1 = new ModelResourceLocation(regName, "inventory");
		ModelBakery.registerItemVariants(item, mr1);
		ModelLoader.setCustomModelResourceLocation(item, 0, mr1);
	}
}

The registerItems method just registers my items. Then im catching ModelRegistryEvent to register my model. And in the last private method im registering models.
In The game iitem still has purple-black cube instead of texture. I dont forgot to create the models\item folder and my_item.json file

im sorry if this text has a grammatical errors. My english is very low  

Link to comment
Share on other sites

Hey, for getting your model to show up in Forge, double-check the way you've set up your model registration. Sometimes, it's just a tiny mix-up with where you've put your model file or maybe missing the right event to hook it up. Also, peek at your @Mod.EventBusSubscriber setup; it's gotta be listening in the right place. And don't forget to place your model file in the exact right spot with the correct naming. If in doubt, the Forge docs or forum threads can be super helpful.

Link to comment
Share on other sites

Posted (edited)

I Solved it. It was a code problem. I re-created a registry models method. Now The method takes in parameters List of items converted to array and registers models for each item separately

Edited by SoMuchBettter
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.