栗子酱 发表于 2024-6-18 16:20:57

addon的贴图无法显示【为空白】

友友们,自制的addon包,为什么我的addon贴图都不显示呀?在线等,急急急


打开textures:




这是行为包:



进入游戏里显示的:

新的item倒有了,但是没有贴图!我很懊恼!=^=
有没有人知道怎么回事呀【鼓捣半天了】

玖橙吖 发表于 2024-6-18 16:20:58

本帖最后由 玖橙吖 于 2024-6-18 16:47 编辑

游戏给你的模组反馈是这样的:-Item item.limo:amethyst_coin requires either an icon atlas or icon texture.

-Item item.limo:copper_coin requires either an icon atlas or icon texture.

-Item item.limo:diamond_coin requires either an icon atlas or icon texture.

-Item item.limo:emerald_coin requires either an icon atlas or icon texture.

-Item item.limo:gold_coin requires either an icon atlas or icon texture.

-Item item.limo:iron_coin requires either an icon atlas or icon texture.

-Item item.limo:netherite_coin requires either an icon atlas or icon texture.

-Item item.limo:ruby_coin requires either an icon atlas or icon texture.


我翻看了一下,发现你没有对物品的图标定义
你需要在资源包文件夹与manifest.json同层的地方,新建一个名为items的文件夹
像我这样写:

代码如下:{
"format_version": "1.10",
"minecraft:item": {
    "description": {
      "identifier": "你的新增物品的命名id",
      "category": "物品分类"
    },
    "components": {
      "minecraft:icon": "对图标的定义",
      "minecraft:render_offsets": "miscellaneous"
    }
}
}
这里有新建物品的教程,你也可以看看:https://minecraft.fandom.com/zh/wiki/%E6%95%99%E7%A8%8B/%E8%87%AA%E5%AE%9A%E4%B9%89%E7%89%A9%E5%93%81

栗子酱 发表于 2024-6-18 16:24:36

【附件】

为了大家方便解决我的问题,我发布了制做的addon,拜托大佬们了!

呼啸泰坦 发表于 2024-6-18 18:40:41

你使用了老版物品写法,需要资源包创建items文件,另一个人已经说了怎么搞

栗子酱 发表于 2024-6-22 11:12:49

玖橙吖 发表于 2024-6-18 16:41
游戏给你的模组反馈是这样的:
我翻看了一下,发现你没有对物品的图标定义
你需要在资源包文件夹与manifest ...

解决了,非常感谢~
页: [1]
查看完整版本: addon的贴图无法显示【为空白】