Jump to content

1.14.3 textures for my entities don´t load.


Drachenbauer

Recommended Posts

Hello

 

Now the models of my entities appear in the world.

But they have the black and magenta error-texture instead of their own textures, I created for them.

Why this happens?

 

in the render of my entity I have this:

    @Override
    protected ResourceLocation getEntityTexture(RedEntity arg0)
    {
        return new ResourceLocation("textures/entity/red.png");
    }

That should load the texture for the entity.

What must I change here to get it to work (i´m pretty sure, that´s the right resource-path)?

This variant also don´t work:

    private static final ResourceLocation RED_TEXTURE = new ResourceLocation("textures/entity/red.png");

    @Override
    protected ResourceLocation getEntityTexture(RedEntity arg0)
    {
        return RED_TEXTURE;
    }

 

Edited by Drachenbauer
fix typos
Link to comment
Share on other sites

This is the log about the texture:

Spoiler

[15:39:27.051] [Client thread/WARN] [minecraft/TextureManager]: Failed to load texture: minecraft:textures/entity/red.png
java.io.FileNotFoundException: minecraft:textures/entity/red.png
    at net.minecraft.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:58) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B}
    at net.minecraft.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:60) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {}
    at net.minecraft.client.renderer.texture.SimpleTexture$TextureData.func_217799_a(SourceFile:65) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.texture.SimpleTexture.func_215246_b(SourceFile:44) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SourceFile:27) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:64) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.entity.EntityRenderer.bindTexture(SourceFile:106) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.entity.EntityRenderer.bindEntityTexture(SourceFile:101) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.entity.LivingRenderer.renderModel(LivingRenderer.java:189) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.entity.LivingRenderer.doRender(LivingRenderer.java:136) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.entity.LivingRenderer.doRender(LivingRenderer.java:28) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.entity.EntityRendererManager.renderEntity(EntityRendererManager.java:370) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.entity.EntityRendererManager.renderEntityStatic(EntityRendererManager.java:359) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.WorldRenderer.renderEntities(WorldRenderer.java:540) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.GameRenderer.updateCameraAndRender(GameRenderer.java:712) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.GameRenderer.renderWorld(GameRenderer.java:640) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.GameRenderer.updateCameraAndRender(GameRenderer.java:494) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:885) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.run(Minecraft.java:384) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(SourceFile:154) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {pl:runtimedistcleaner:A}
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201] {}
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201] {}
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201] {}
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201] {}
    at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:55) ~[forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-2.1.5.jar:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:50) [modlauncher-2.1.5.jar:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:68) [modlauncher-2.1.5.jar:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:77) [modlauncher-2.1.5.jar:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:62) [modlauncher-2.1.5.jar:?] {}
    at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:101) [forge-1.14.3-27.0.50_mapped_snapshot_20190714-1.14.3.jar:?] {}

it tries to load it from the minecraft buildin textures.

How do i get it to look into the resources of the mod instead?

 

Ok, now i found out, that i had to set my mod id and a ":" in front of the resource-path to make it look in my resources for the texture.

Now my entities finally have their textures.

Edited by Drachenbauer
Link to comment
Share on other sites

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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