Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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/:?]

 

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");

  • 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 xD

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.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.