Jump to content

[1.11.2] Item textures


Failender

Recommended Posts

Hey there,

 

I am having problems registering the textures for my items. I know that I am missing something seriously obvious and hope that some1 can point me in the right direction.

 

I got the following item-class

 

public class ItemLearnScroll extends Item{
    public ItemLearnScroll() {
        setMaxStackSize(1);
        setUnlocalizedName("learnscroll");
        //For testing until i got my own tab
        setCreativeTab(CreativeTabs.FOOD);
        setRegistryName("learnscroll");
    }   
}

 


I register the item in the event

@SubscribeEvent
public void registerItems(RegistryEvent.Register<Item> event) {
    event.getRegistry().registerAll(ProgressingPlayer.ITEM_LEARN_SCROLL);
}

 

src/main/resources/assets/progressingplayer/models/item/learnscroll.json

{
    "parent": "item/generated",
    "textures": {
        "layer0": "progressingplayer:items/learnscroll"
    }
}

 

The texture is located under src/main/resources/assets/progressingplayer/texures/items/learnscroll.png

The item is registered, but got no texture

 

This is the important error log


 

Spoiler

[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN progressingplayer
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]:   domain progressingplayer is missing 1 texture
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]:     domain progressingplayer has 1 location:
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]:       unknown resourcepack type net.minecraft.client.resources.LegacyV2Adapter : FMLFileResourcePack:Progressing Player
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain progressingplayer are:
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/learnscroll.png
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain progressingplayer
[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================

 

I would be glad if someone could tell me where my error is.


Greetz,

Failender

 

Link to comment
Share on other sites

Do you register the model on client side?

Developer of Randores (adds 256^3 ores to the game) and Arcane Bags (adds ridiculous storage with ridiculous crafting recipes).

I know Java pretty well... So yeah...

Quote

This is where I'd put an inspirational and/or clever quote, but I can't think of one right now...

This is the output of the totally, 100% working compiler for my programming language, Planet9:

Beginning Compilation...
Failed compilation!
planet9.compiler.error.CompilationException: Compiler not yet implemented
	at planet9.compiler.Compiler.compile(Compiler.java:39)
	at planet9.compiler.app.CompilerApp.main(CompilerApp.java:147)

 

Link to comment
Share on other sites

The error is not in the JSON or the PNG or the registration:

Quote

[20:18:19] [Client thread/ERROR] [TEXTURE ERRORS]:       unknown resourcepack type net.minecraft.client.resources.LegacyV2Adapter : FMLFileResourcePack:Progressing Player

See:

 

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Im not sure how to fix that to be honest.

I created a pack.mcmeta and placed it under src/main/resources

Spoiler

{
    "pack": {
        "pack_format": 3,
        "description": "Resources for ProgressingPlayer"
    }
}

Choonster post is only telling that resource files should be named using lower-case only, which my items are doing?

Link to comment
Share on other sites

Spoiler

[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN progressingplayer
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]:   domain progressingplayer is missing 1 texture
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]:     domain progressingplayer has 1 location:
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]:       mod progressingplayer resources at E:\MinecraftModding\ProgressingPlayer\bin
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain progressingplayer are:
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/learnscroll.png
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain progressingplayer
[21:53:51] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================

This gives my mod a location, but he is still complaining about hte missing texture.

Link to comment
Share on other sites

So I am still fighting the following error

 

Spoiler

[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN progressingplayer
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]:   domain progressingplayer is missing 11 textures
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]:     domain progressingplayer has 1 location:
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]:       mod progressingplayer resources at E:\MinecraftModding\ProgressingPlayer\bin
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain progressingplayer are:
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/learnscroll.png
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain progressingplayer
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[11:41:37] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

And I have no idea how to fix it and would be glad to get any input relating this issue

Link to comment
Share on other sites

Well. Where is the correct location?

Texture files(items) go into assets.modid.textures.items , right?

Is there any documentation how to correctly register the items (including location of jsons / textures and correct usage of ModelRegistryEvent)? readthedocs is not complete in that regard.

 

@SubscribeEvent
public void registerModel(ModelRegistryEvent event) {
	registerItem(ITEM_LEARN_SCROLL);
}

private void registerItem(Item item) {
	ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
}

 

 

Link to comment
Share on other sites

└───assets
    └───progressingplayer
        │
        ├───models
        │   │
        │   └───item
        │           learnscroll.json
        │
        └───textures
            │
            └───items
                    learnscroll.png

 

Thats exactly where its located.

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Slot depo 5k merupakan situs slot depo 5k yang menyediakan slot minimal deposit 5rb atau 5k via dana yang super gacor, dimana para pemain hanya butuh modal depo sebesar 5k untuk bisa bermain di link slot gacor thailand terbaru tahun 2024 yang gampang menang ini.   DAFTAR & LOGIN AKUN PRO SLOT DEPO 5K ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • Slot deposit 3000 adalah situs slot deposit 3000 via dana yang super gacor dimana para pemain dijamin garansi wd hari ini juga hanya dengan modal receh berupa deposit sebesar 3000 baik via dana, ovo, gopay maupun linkaja untuk para pemain pengguna e-wallet di seluruh Indonesia.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT 3000 ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • OLXTOTO: Menikmati Sensasi Bermain Togel dan Slot dengan Aman dan Mengasyikkan Dunia perjudian daring terus berkembang dengan cepat, dan salah satu situs yang telah menonjol dalam pasar adalah OLXTOTO. Sebagai platform resmi untuk permainan togel dan slot, OLXTOTO telah memenangkan kepercayaan banyak pemain dengan menyediakan pengalaman bermain yang aman, adil, dan mengasyikkan. DAFTAR OLXTOTO DISINI Keamanan Sebagai Prioritas Utama Salah satu aspek utama yang membuat OLXTOTO begitu menonjol adalah komitmennya terhadap keamanan pemain. Dengan menggunakan teknologi enkripsi terkini, situs ini memastikan bahwa semua informasi pribadi dan keuangan para pemain tetap aman dan terlindungi dari akses yang tidak sah. Beragam Permainan yang Menarik Di OLXTOTO, pemain dapat menemukan beragam permainan yang menarik untuk dinikmati. Mulai dari permainan klasik seperti togel hingga slot modern dengan fitur-fitur inovatif, ada sesuatu untuk setiap selera dan preferensi. Grafik yang memukau dan efek suara yang mengagumkan menambah keseruan setiap putaran. Peluang Menang yang Tinggi Salah satu hal yang paling menarik bagi para pemain adalah peluang menang yang tinggi yang ditawarkan oleh OLXTOTO. Dengan pembayaran yang adil dan peluang yang setara bagi semua pemain, setiap taruhan memberikan kesempatan nyata untuk memenangkan hadiah besar. Layanan Pelanggan yang Responsif Tim layanan pelanggan OLXTOTO siap membantu para pemain dengan setiap pertanyaan atau masalah yang mereka hadapi. Dengan layanan yang ramah dan responsif, pemain dapat yakin bahwa mereka akan mendapatkan bantuan yang mereka butuhkan dengan cepat dan efisien. Kesimpulan OLXTOTO telah membuktikan dirinya sebagai salah satu situs terbaik untuk penggemar togel dan slot online. Dengan fokus pada keamanan, beragam permainan yang menarik, peluang menang yang tinggi, dan layanan pelanggan yang luar biasa, tidak mengherankan bahwa situs ini telah menjadi pilihan utama bagi banyak pemain. Jadi, jika Anda mencari pengalaman bermain yang aman, adil, dan mengasyikkan, jangan ragu untuk bergabung dengan OLXTOTO hari ini dan rasakan sensasi kemenangan!
    • Slot deposit dana adalah situs slot deposit dana yang juga menerima dari e-wallet lain seperti deposit via dana, ovo, gopay & linkaja terlengkap saat ini, sehingga para pemain yang tidak memiliki rekening bank lokal bisa tetap bermain slot dan terbantu dengan adanya fitur tersebut.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT DANA ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • Slot deposit dana adalah situs slot deposit dana minimal 5000 yang dijamin garansi super gacor dan gampang menang, dimana para pemain yang tidak memiliki rekening bank lokal tetap dalam bermain slot dengan melakukan deposit dana serta e-wallet lainnya seperti ovo, gopay maupun linkaja lengkap. Agar para pecinta slot di seluruh Indonesia tetap dapat menikmati permainan tanpa halangan apapun khususnya metode deposit, dimana ketersediaan cara deposit saat ini yang lebih beragam tentunya sangat membantu para pecinta slot.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT DANA ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
  • Topics

×
×
  • Create New...

Important Information

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