zh_cn:tutorial:itemgroup
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
zh_cn:tutorial:itemgroup [2024/08/23 13:03] – solidblock | zh_cn:tutorial:itemgroup [2024/08/23 13:06] (current) – [创建自定义物品组] solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== 物品组 ====== | ====== 物品组 ====== | ||
- | //这是 1.20+ 版本的教程,对于 1.19 版本,请阅读[[tutorial: | + | //这是 1.20+ 版本的教程,对于 1.19 版本,请阅读[[tutorial: |
现在,你可以使用命令 ''/ | 现在,你可以使用命令 ''/ | ||
Line 71: | Line 71: | ||
如果你认为需要自己的物品组,可以使用 '' | 如果你认为需要自己的物品组,可以使用 '' | ||
< | < | ||
- | private | + | public final class TutorialItemGroups { |
- | .icon(() -> new class_1799(CUSTOM_ITEM)) | + | public |
- | .displayName(class_2561.method_43469(" | + | .icon(() -> new class_1799(TutorialItems.CUSTOM_ITEM)) |
+ | .displayName(class_2561.method_43469(" | ||
.entries((context, | .entries((context, | ||
- | entries.add(CUSTOM_ITEM); | + | |
- | }) | + | }) |
- | .build(); | + | .build(); |
+ | } | ||
</ | </ | ||
Line 87: | Line 89: | ||
< | < | ||
- | class_2378.method_10230(class_7923.field_44687, | + | public final class TutorialItemGroups { |
+ | // .... | ||
+ | |||
+ | public static void initialize() { | ||
+ | // 自从 1.21: | ||
+ | class_2378.method_10230(class_7923.field_44687, | ||
+ | |||
+ | // 在 1.21 之前: | ||
+ | | ||
+ | } | ||
+ | } | ||
</ | </ | ||
+ | |||
+ | 当然,也可以在给字段赋值时,直接注册: | ||
+ | < | ||
+ | public final class TutorialItemGroups { | ||
+ | public static final class_1761 TEST_GROUP = class_2378.method_10230(class_7923.field_44687, | ||
+ | .icon(() -> new class_1799(CUSTOM_ITEM)) | ||
+ | .displayName(class_2561.method_43469(" | ||
+ | .entries((context, | ||
+ | entries.add(TutorialItems.CUSTOM_ITEM); | ||
+ | }) | ||
+ | .build()); | ||
+ | | ||
+ | public static void initialize() { | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | 记得在你的 '' | ||
+ | < | ||
+ | public class ExampleMod implements ModInitializer { | ||
+ | @Override | ||
+ | public void onInitialize() { | ||
+ | TutorialItemGroups.initialize(); | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | :!: 下面的截图已过时。 | ||
{{: | {{: |
zh_cn/tutorial/itemgroup.1724418231.txt.gz · Last modified: 2024/08/23 13:03 by solidblock