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

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

  • Author

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

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.