UID149833性别保密经验 EP铁粒 粒回帖0主题精华在线时间 小时注册时间2021-9-10最后登录1970-1-1
|
发表于 2024-6-18 16:20:58 来自手机|显示全部楼层 IP:湖南省 本帖最后由 玖橙吖 于 2024-6-18 16:47 编辑
游戏给你的模组反馈是这样的:- [Item][warning]-Item item.limo:amethyst_coin requires either an icon atlas or icon texture.
- [Item][warning]-Item item.limo:copper_coin requires either an icon atlas or icon texture.
- [Item][warning]-Item item.limo:diamond_coin requires either an icon atlas or icon texture.
- [Item][warning]-Item item.limo:emerald_coin requires either an icon atlas or icon texture.
- [Item][warning]-Item item.limo:gold_coin requires either an icon atlas or icon texture.
- [Item][warning]-Item item.limo:iron_coin requires either an icon atlas or icon texture.
- [Item][warning]-Item item.limo:netherite_coin requires either an icon atlas or icon texture.
- [Item][warning]-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/ ... 9%E7%89%A9%E5%93%81 |
2#2024-6-18 16:20:58回复(0)收起回复 |