Posted July 19, 201312 yr im trying to make a mod(s) and i migrated to 1.6.2 and i dont know how to connect textures to blocks and items, i can't find any tutorials or any question about it, please someone help
July 19, 201312 yr A. Don't shout. It hurt my ears... B. I don't know about block, but for items, put @SideOnly(Side.CLIENT) public void registerIcons(IconRegister iconRegister) { this.itemIcon = iconRegister.registerIcon("YOUR LOWERCASE MODID HERE:YOUR LOWERCASE ITEM TEXTURE NAME HERE"); } Make sure EVERYTHING including your modid and texture names, are lower case, else nothing will work. That means you should have to change a good amount of stuff if your modid was uppercase... make sure your .png files and all your folders are lowercase as well. Also, in the path to your textures, replace mods (or mod, whatever folder was before the one with your modid) with assets, so it should now look like: assets/YOUR MODID IN LOWERCASE/textures/items/ALL YOUR ITEM TEXTURES IN LOWERCASE If this helped you, make sure to press the 'thank you' or 'applaud' button! Creator of Metroid Cubed! Power Suits, Beams, Hypermode and more! http://i.imgur.com/ghgWmA3.jpg[/img]
July 19, 201312 yr If you don't want to create a new class for every single Block or Item, do it like this: package mod.classes.basic; import cpw.mods.fml.common.FMLLog; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import mod.Main; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IconRegister; public class ModBlock extends Block { public ModBlock(int par1, Material par2Material) { super(par1, par2Material); } public ModBlock(int ID){ super(ID, Material.rock); } @Override @SideOnly(Side.CLIENT) public void registerIcons(IconRegister iconRegister) { this.blockIcon = iconRegister.registerIcon(Main.modID + ":" + (this.getUnlocalizedName().substring(5))); } } (For this you need a static variable in your main Class, which contains the modID) public static final String modID = "your mod ID"; To set a Block Texture, you now just use .setUnlocalizedName("PictureNameInLowercaseWithout.png"); You must put the Textures into the following folder: ../forge/mcp/src/minecraft/assets/ModidInLowecase/textures Subfolders: blocks, items (, models) Hope, I could help you. http://i.imgur.com/wNvtGZw.png[/img] MODS and MODDING TUTORIALS
July 19, 201312 yr Author Thanks guys for your help, i didn't try it out yet but i know it should work. but how do i set up the texture folder path when i wanna test it out in mcp.. do i put it in the .jar?
July 19, 201312 yr Thanks guys for your help, i didn't try it out yet but i know it should work. but how do i set up the texture folder path when i wanna test it out in mcp.. do i put it in the .jar? Put it in mcp>src>minecraft>assets>(lowercase mod ID)>textures>items Make new folders if they don't exists already.
July 19, 201312 yr Thanks guys for your help, i didn't try it out yet but i know it should work. but how do i set up the texture folder path when i wanna test it out in mcp.. do i put it in the .jar? Put it in mcp>src>minecraft>assets>(lowercase mod ID)>textures>items Make new folders if they don't exists already. nope not in the minecraft assets. nope nope nope. just create a package called assets.*moddid*.textures.items and put Item textures in there, similarly for blocks. It hasn't changes at all since 1.5.2, other than "mods" was changes to "assets" so the old tutorials mostly still work. github
July 19, 201312 yr nope not in the minecraft assets. nope nope nope. just create a package called assets.*moddid*.textures.items and put Item textures in there, similarly for blocks. It hasn't changes at all since 1.5.2, other than "mods" was changes to "assets" so the old tutorials mostly still work. Just for future reference, would I put this in my package that I already have for my mod, or would I make an entirely new package?
July 19, 201312 yr like this: if you are doing this in the Minecraft project (provided by default by MCP), just put the assets folder in the main source folder (so the folder with net. and cpw. and ibxm. and so on) github
July 22, 201312 yr and what about if its a mob texture where does it go ? I like helping people because i was also in a same problem and i do not like unfinished work, so a thank you will be enough for the people im helping and a thank you to the people that helped me
July 22, 201312 yr It will be referenced as a resource location, which looks like the following: private static final ResourceLocation backgroundLocation = new ResourceLocation("modid:path_to_texture_from_assets"); so say I had a mod called animals, and I had a crow texture. The path could be assets/animals/textures/entities/crow.png the resource location would look something like: private static final ResourceLocation crowSkin = new ResourceLocation("animals:textures/entities/crow.png"); hope I made that clear enough github
July 22, 201312 yr hehe this helped me actuly was wondering why it was so difrent from 1.5.1/1.5.2 i think forge aloud us to use the modId("name") to do a seperate map for the textures so you wont get confuses if you texture are in all of th mc textures anny way thx iv updater my mod to 1.6.2 hehe
July 22, 201312 yr how does it work for a GUI hoew does it load the right loaction ?? becose iv tryd couple of things still it returns black/pink gui
July 22, 201312 yr Here's one of my GUIs you can use as a sample to figure this out. I would much rather you look through that and see if you can tell what is required, than just give you the answers and help you limp along. PLEASE DO NOT COPY AND PASTE CODE WITHOUT UNDERSTANDING IT FULLY, you will only be setting yourself up to fail. github
July 23, 201312 yr Can't get textures to work. Here's the code for my simplest block: package fleshwerxx; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.client.renderer.texture.IconRegister; public class BlockOpenEarth extends Block { public BlockOpenEarth(int id) { super(id, Material.ground); this.setCreativeTab(Fleshwerxx.tabFW); } public void registerIcons(IconRegister par1IconRegister) { this.blockIcon = par1IconRegister.registerIcon("fleshwerxx:openearth"); } } But I can't figure out where to put the textures. I don't use Eclipse btw. I understand why all these resource changes have occurred, but I'm getting rreeeal sick of textures being problematic every time I update my damn mod...
July 23, 201312 yr A. Don't shout. It hurt my ears... B. I don't know about block, but for items, put @SideOnly(Side.CLIENT) public void registerIcons(IconRegister iconRegister) { this.itemIcon = iconRegister.registerIcon("YOUR LOWERCASE MODID HERE:YOUR LOWERCASE ITEM TEXTURE NAME HERE"); } Make sure EVERYTHING including your modid and texture names, are lower case, else nothing will work. That means you should have to change a good amount of stuff if your modid was uppercase... make sure your .png files and all your folders are lowercase as well. Also, in the path to your textures, replace mods (or mod, whatever folder was before the one with your modid) with assets, so it should now look like: assets/YOUR MODID IN LOWERCASE/textures/items/ALL YOUR ITEM TEXTURES IN LOWERCASE If this helped you, make sure to press the 'thank you' or 'applaud' button! Please Help me ive been googling all day and its what they all say im on minecraftforge 1.6.2 and it says void is an invalid for variable registerIcons
July 23, 201312 yr what does eclipse says ? how to debug 101:http://www.minecraftforge.net/wiki/Debug_101 -hydroflame, author of the forge revolution-
July 24, 201312 yr can i see your code ? how to debug 101:http://www.minecraftforge.net/wiki/Debug_101 -hydroflame, author of the forge revolution-
July 24, 201312 yr ... READ THIS TUTORIAL: http://www.minecraftforge.net/wiki/Icons_and_Textures I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes. I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there
July 24, 201312 yr package inventory_Upgrades; import net.minecraft.block.Block; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.item.Item; public class CobaltIngot extends Item { public CobaltIngot(int id) { super(id); { @SideOnly(Side.CLIENT) public void registerIcons IconRegister iconRegister; this.itemIcon = iconRegister.registerIcon("inven:CobaltIngot"); } } }
July 24, 201312 yr package inventory_Upgrades; import net.minecraft.block.Block; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.item.Item; public class CobaltIngot extends Item { public CobaltIngot(int id) { super(id); } @SideOnly(Side.CLIENT) public void registerIcons(IconRegister iconRegister) { this.itemIcon = iconRegister.registerIcon("inven:CobaltIngot"); } } Try that... I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes. I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there
July 24, 201312 yr holy shit ... learn java dude how to debug 101:http://www.minecraftforge.net/wiki/Debug_101 -hydroflame, author of the forge revolution-
July 24, 201312 yr thanks. but one last thing how do i make it only show the ingot not the white ouside
July 24, 201312 yr your image must have an alpha of 255 instead of the white how to debug 101:http://www.minecraftforge.net/wiki/Debug_101 -hydroflame, author of the forge revolution-
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.