User Tools

Site Tools


zh_cn:tutorial:crops

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
zh_cn:tutorial:crops [2025/04/01 11:45] solidblockzh_cn:tutorial:crops [2025/04/01 12:05] (current) – fix typo solidblock
Line 70: Line 70:
          
     // 对于 1.21.2 及之后的版本:     // 对于 1.21.2 及之后的版本:
-    public static final Item CUSTOM_SEEDS = register("custom_seeds", new AliasedBlockItem(TutorialBlocks.CUSTOM_CROP, new Item.Settings()));+    public static final Item CUSTOM_SEEDS = register("custom_seeds", settings -> new BlockItem(TutorialBlocks.CUSTOM_CROP, settings), new Item.Settings().useItemPrefixedTranslationKey()); 
 +</code> 
 + 
 +> 在[[blocks|添加方块]]教程中,我们写的 ''register'' 方法默认会为每个方块创建一个对应的物品。因此这里会在创建的 ''custom_seeds'' 的同时,还注册了名为 ''custom_crop'' 的物品。如果不需要创建这个物品,可以像这样创建个不注册物品的 ''registerBlockOnly'' 方法,或者给 ''register'' 方法添加个参数以决定是否注册物品。 
 +> <code java TutorialBlocks.java> 
 +  // ... 
 +  public static final Block CUSTOM_CROP = registerBlockOnly("custom_crop", CustomCropBlock::new, AbstractBlock.Settings.create().nonOpaque().noCollision().ticksRandomly().breakInstantly().sounds(BlockSoundGroup.CROP)); 
 +   
 +  // ... 
 +   
 +  private static Block registerBlockOnly(String path, Function<AbstractBlock.Settings, Block> factory, AbstractBlock.Settings settings) { 
 +    final Identifier identifier = Identifier.of("tutorial", path); 
 +    final RegistryKey<Block> registryKey = RegistryKey.of(RegistryKeys.BLOCK, identifier); 
 + 
 +    return Blocks.register(registryKey, factory, settings); 
 +  }
 </code> </code>
  
Line 100: Line 115:
 </code> </code>
  
-最后,您还需要为您的作物创建方块状态,以给作物的每个生长阶段都注册单独的模型。+最后,您还需要为您的作物创建方块状态映射,以给作物的每个生长阶段都分配单独的模型。
  
 <code JavaScript src/main/resources/assets/tutorial/blockstates/custom_crop.json> <code JavaScript src/main/resources/assets/tutorial/blockstates/custom_crop.json>
Line 132: Line 147:
 } }
 </code> </code>
 +
 +> 种子物品也需要对应的物品模型和物品模型映射(对于 1.21.4 及之后的版本),具体做法参见 [[items]],这里不作详细描述。
  
 ===== 战利品表 ===== ===== 战利品表 =====
zh_cn/tutorial/crops.1743507925.txt.gz · Last modified: 2025/04/01 11:45 by solidblock