Posted April 28, 20169 yr So im working on a Zelda modpack and am making a custom mod for said modpack based off of The Legend Of Zelda. However the first mob im trying to implement will not load its texture. The model and AI are fine but the texture does not seem to load into the game. I have tried MULTIPLE tutorials and help forums and nothing seems to be helping The coding for the Rendering package com.zeldaquest.Entity.Mobs; import com.zeldaquest.lib.RefStrings; import net.minecraft.client.model.ModelBase; import net.minecraft.client.renderer.entity.RenderLiving; import net.minecraft.entity.Entity; import net.minecraft.util.ResourceLocation; public class RenderPeahatMob extends RenderLiving { private static final ResourceLocation mobTexture = new ResourceLocation("src/main/resources/assets/zquest/textures/entity/Peahat.png"); public RenderPeahatMob(ModelBase par1ModelBase, float par2) { super(par1ModelBase, par2); } protected ResourceLocation getEntityTexture(EntityPeahatMob entity){ return mobTexture; } protected ResourceLocation getEntityTexture(Entity entity){ return this.getEntityTexture((EntityPeahatMob)entity); } And My Log And my Logs [19:52:50] [Client thread/WARN]: Failed to load texture: minecraft:src/main/resources/assets/zquest/textures/entity/Peahat.png java.io.FileNotFoundException: minecraft:src/main/resources/assets/zquest/textures/entity/Peahat.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:35) ~[simpleTexture.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45) [TextureManager.class:?] at net.minecraft.client.renderer.entity.Render.bindTexture(Render.java:60) [Render.class:?] at net.minecraft.client.renderer.entity.Render.bindEntityTexture(Render.java:55) [Render.class:?] at net.minecraft.client.renderer.entity.RendererLivingEntity.renderModel(RendererLivingEntity.java:305) [RendererLivingEntity.class:?] at net.minecraft.client.renderer.entity.RendererLivingEntity.doRender(RendererLivingEntity.java:165) [RendererLivingEntity.class:?] at net.minecraft.client.renderer.entity.RenderLiving.doRender(RenderLiving.java:36) [RenderLiving.class:?] at net.minecraft.client.renderer.entity.RenderLiving.doRender(RenderLiving.java:156) [RenderLiving.class:?] at net.minecraft.client.renderer.entity.RenderManager.func_147939_a(RenderManager.java:300) [RenderManager.class:?] at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:278) [RenderManager.class:?] at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:251) [RenderManager.class:?] at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:527) [RenderGlobal.class:?] at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1300) [EntityRenderer.class:?] at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1087) [EntityRenderer.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?]
April 29, 20169 yr Your path to the texture isn't right. It's looking in the minecraft assets to find the texture because your resource location links to the wrong spot. For locations in your mod, you specify your modid as the first argument and give the path from your mod's assets folder as the second argument. Set your resource location like this and see if it works: mobTexture = new ResourceLocation("zquest", "/textures/entity/Peahat.png");
April 30, 20169 yr Author Omg that worked thank you! I have been getting different ways of coding from different sources (Cough cough) Youtube videos (Cough cough) so I have been jumping around with different types of code.... I guess thats not the best thing to be doing. But Im just a noob to coding But thanks anyway! This helped alot!
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.