Thlurb Posted July 16, 2016 Posted July 16, 2016 Hi, I'm a newbie modder trying to follow MrCrayfish's 1.8 modding tutorial in 1.10.2. While trying to import ModelResourceLocation, I got an error saying that the import net.minecraft.client.resources.model cannot be resolved. I'm guessing this was caused by the new dual wielding in 1.9. Can someone ELI5 how this kind of thing is done now? Preferably by converting this code to 1.10.2 since I probably won't understand what you're talking about otherwise: package com.thlurb.tutorial.init; import net.minecraft.client.Minecraft; import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.item.Item; import net.minecraftforge.fml.common.registry.GameRegistry; public class TutorialItems { public static Item test_item; public static void init() { test_item = new Item().setUnlocalizedName("test_item"); } public static void register() { GameRegistry.registerItem(test_item, test_item.getUnlocalizedName().substring(5)); } public static void registerRenders() { } public static void registerRenders(Item item) { Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Reference.MOD_ID + ":" + item.getUnlocalizedName().substring(5), "inventory")); } } Thanks! Quote
Ernio Posted July 16, 2016 Posted July 16, 2016 This has nothing to do with versions. 1. Client only classes (models) have to be moved to proxy: http://mcforge.readthedocs.io/en/latest/concepts/sides/ Google proxy tutorials. 2. Stop using unlocalizedName.subString "way" - it's an abomination Quote 1.7.10 is no longer supported by forge, you are on your own.
Thlurb Posted July 16, 2016 Author Posted July 16, 2016 This has nothing to do with versions. 1. Client only classes (models) have to be moved to proxy: http://mcforge.readthedocs.io/en/latest/concepts/sides/ Google proxy tutorials. 2. Stop using unlocalizedName.subString "way" - it's an abomination So the code is just wrong? Not because I'm on 1.10.2? Because that's the exact code from MrCrayfish's tutorial Quote
Choonster Posted July 16, 2016 Posted July 16, 2016 ModelResourceLocation was moved to the net.minecraft.client.renderer.block.model package. Quote Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
Thlurb Posted July 16, 2016 Author Posted July 16, 2016 Know of any beginner tutorials up to date with 1.10.2? Quote
OrangeVillager61 Posted July 16, 2016 Posted July 16, 2016 MrCrayfish has started with 1.9.4 modding tutorials, however this isn't a good website for looking for tutorials. Try the minecraft forums. Quote
Recommended Posts
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.