-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ad3f5d
commit b9cb95a
Showing
2 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
## {item_modifier} Компонент `item_model` | ||
В 1.21.2 был добавлен компонент `item_model`, который значительно упрощает изменение модели определённого предмета без использования кастом модел даты (смотрите `?cmd`). | ||
|
||
Работает он очень просто - в него нужно вписать путь к модели предмета в ресурспаке, и путь начинается с папки `assets/minecraft/models/item`. Например, если нужно выдать палку с моделью стержня энда, это можно сделать так: | ||
Работает он очень просто - в него нужно вписать путь к модели предмета в ресурспаке, и путь начинается с папки `assets/namespace/items`. Например, если нужно выдать палку с моделью стержня энда, это можно сделать так: | ||
```ansi | ||
[35mgive [36m@s [0mstick[33m[[37mitem_model[34m=[32m"end_rod"[33m]``` | ||
А если у нас есть кастомная модель в ресурспаке, и лежит она, например, по пути `assets/namespace/models/item/custom/fire_wand.json`, то команда выдачи будет выглядеть так: | ||
А если у нас есть кастомная модель в ресурспаке, и лежит она, например, по пути `assets/namespace/models/item/custom/fire_wand.json`, то сначала надо сделать для неё специальный джсон файл, например `assets/namespace/items/custom/wand.json`, в котором самый простой способ прописать модель будет так: | ||
```json | ||
{ | ||
"model": { | ||
"type": "minecraft:model", | ||
"model": "<путь к модели в models>" | ||
} | ||
} | ||
``` | ||
И тогда команда выдачи будет выглядеть так: | ||
```ansi | ||
[35mgive [36m@s [0mstick[33m[[37mitem_model[34m=[32m"namespace:custom/fire_wand"[33m]``` | ||
[35mgive [36m@s [0mstick[33m[[37mitem_model[34m=[32m"namespace:custom/wand"[33m]``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters