Posted September 25, 201213 yr I'm having a problem with dynamic pathing for texture files. For example, say I have a bunch of textures in .minecraft/mods/Xie/... somewhere, but I don't know where they'll be until runtime, and I don't want to have to cram them all into the minecraft.jar. In the past, I was able to provide the path relative to the mod .zip file, and the class loader found it. Is this still the case and I'm a total noob, or is there another way and I'm only slightly noob? Apologies if this question has been answered somewhere else, I did look, promise. Also I love the new Forge, keep up the good work
September 25, 201213 yr Ya, stick your textures in your mod zip, not in the mods folder... I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
September 25, 201213 yr Author Sorry, I should have framed my question better. My mod doesn't come with any textures built in, you install whatever content you like and it gets dynamically added at runtime. In the past users installed content for my mod (plain text and textures) by copying it into ./mods/Xie/. So I was hoping for a way to refer to textures not inside the .jar or .zip. It's all good, if I can't figure it out we'll just have to install content files into the mod zip instead. Cheers for the quick reply.
September 25, 201213 yr You could always use the net.minecraft.src.client.Minecraft.getMinecraftDir(); I believe it was like that, but it could be something similar, it's been a while since I had to use it. After that, you just make a file using that folder, then adding the rest of the path you want, like: "folder/another folder/as many folders as you need/file.extention". That should work, and if it doesn't, just ask again, and I'll try to do my best to help you.
September 25, 201213 yr You'd have to add your folders specfically to the class path and then tell MC to load then properly. There isnt much I can do to explain basic of java to you. I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
September 25, 201213 yr Author You'd have to add your folders specfically to the class path and then tell MC to load then properly. Cool, that's what I needed to know. Thanks.
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.