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.

Caused by: java.lang.IllegalArgumentException: Texture does not exist in any known resource pack

Featured Replies

Posted

Caused by: java.lang.IllegalArgumentException: Texture tritia:raw_bauxite does not exist in any known resource pack
 

my mod items models provider class: 

package com.marcal.tritia.data.client;

import com.marcal.tritia.TritiaEnergy;
import net.minecraft.data.DataGenerator;
import net.minecraftforge.client.model.generators.ItemModelBuilder;
import net.minecraftforge.client.model.generators.ItemModelProvider;
import net.minecraftforge.client.model.generators.ModelFile;
import net.minecraftforge.common.data.ExistingFileHelper;

public class ModItemModelProvider extends ItemModelProvider {
    public ModItemModelProvider(DataGenerator generator, ExistingFileHelper existingFileHelper) {
        super(generator, TritiaEnergy.MOD_ID, existingFileHelper);
    }

    @Override
    protected void registerModels() {
        //withExistingParent("bauxite_ore", modLoc("block/bauxite_ore"));

        ModelFile itemGenerated = getExistingFile(mcLoc("item/generated"));

        builder(itemGenerated, "raw_bauxite");
    }

    private ItemModelBuilder builder(ModelFile itemGenerated, String name) {
        return getBuilder(name).parent(itemGenerated).texture("layer0", name);
    }
}

 

  • Author

Yes, but the texture exist but when i try to runData it gives this error

Sory for my bad english i'm from Brasil

16 minutes ago, marcal2015 said:

Yes, but the texture exist but when i try to runData it gives this error

Sory for my bad english i'm from Brasil

It isn't about the runData. It's about where your texture is placed. Data generation seems to be working perfectly fine.
Please check if the path to your texture is the following: "src/main/resources/assets/tritia/textures/item/". Make sure there is no misspellings!

Edited by uSkizzik

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.