zh_cn:tutorial:blockentity
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
zh_cn:tutorial:blockentity [2024/08/27 02:15] – solidblock | zh_cn:tutorial:blockentity [2025/04/01 12:20] (current) – [方块实体刻] solidblock | ||
---|---|---|---|
Line 30: | Line 30: | ||
[...] | [...] | ||
| | ||
- | public static final DemoBlock DEMO_BLOCK = register(" | + | |
+ | // public static final DemoBlock DEMO_BLOCK = register(" | ||
+ | |||
+ | // 对于 1.21.2 及之后的版本 | ||
+ | public static final DemoBlock DEMO_BLOCK = register(" | ||
| | ||
[...] | [...] | ||
Line 44: | Line 48: | ||
public static final BlockEntityType< | public static final BlockEntityType< | ||
" | " | ||
- | BlockEntityType.Builder.create(DemoBlockEntity:: | + | |
+ | // 对于 1.21.2 之前的版本,请使用 | ||
+ | FabricBlockEntityTypeBuilder.create(DemoBlockEntity:: | ||
); | ); | ||
| | ||
Line 69: | Line 75: | ||
对于旧版本,如果无法访问 '' | 对于旧版本,如果无法访问 '' | ||
- | 这个方块实体类型定义了只有 '' | + | 这个方块实体类型定义了只有 '' |
> **注意:**和其他方块一样,这个方块也需要方块模型和物品模型,可能也需要战利品表,关于如何创建请参见 [[blocks]]。对于战利品表,有[[blockentity_sync_itemstac|后续教程]]会提到如何改进战利品表表以包含方块实体数据。 | > **注意:**和其他方块一样,这个方块也需要方块模型和物品模型,可能也需要战利品表,关于如何创建请参见 [[blocks]]。对于战利品表,有[[blockentity_sync_itemstac|后续教程]]会提到如何改进战利品表表以包含方块实体数据。 | ||
Line 119: | Line 125: | ||
在你的 '' | 在你的 '' | ||
<code java DemoBlockEntity.java> | <code java DemoBlockEntity.java> | ||
- | public class DemoBlockEntity extends BlockEntity { | + | public class DemoBlockEntity extends BlockEntity |
[...] | [...] | ||
| | ||
- | public static void tick(World world, BlockPos pos, BlockState state, DemoBlockEntity | + | |
+ | | ||
[...] | [...] | ||
} | } |
zh_cn/tutorial/blockentity.1724724913.txt.gz · Last modified: 2024/08/27 02:15 by solidblock