User Tools

Site Tools


zh_cn:tutorial:blockappearance

Differences

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

Link to this comparison view

Next revision
Previous revision
zh_cn:tutorial:blockappearance [2019/12/19 05:39] – created lightcolourzh_cn:tutorial:blockappearance [2024/08/27 04:22] (current) solidblock
Line 1: Line 1:
-====== Manipulating a Block's appearance ====== +====== 操纵方块的外观 ====== 
-===== Making a block transparent ===== +//这是教程的 1.15+ 版本。如需 1.14 版本,请参考[[tutorial:1.14:blockappearance|操纵方块的外观(1.14)(英文)]]。// 
-You may have noticed that even if your block's texture is transparent, it still looks opaque. +===== 使方块透明或半透明 ===== 
-To fix this, override ''getRenderLayer'' and return ''BlockRenderLayer.TRANSLUCENT''+你可能已经注意到,即使方块的纹理是透明或半透明的,看起来仍是不透明的。如需解决,请将方块的渲染层设为 cutout 或 transparent 
-<code java> + 
-class MyBlock extends Block { +在[[zh_cn:documentation:entrypoint|客户端模组初始化器]]中,添加: 
-    @Override +<yarncode java> 
-    public BlockRenderLayer getRenderLayer() { +@Environment(EnvType.CLIENT) 
-        return BlockRenderLayer.TRANSLUCENT;+public class ExampleModClient implements ClientModInitializer() 
 +    public void onInitializeClient() { 
 +        // 如果方块一些部分是透明的(例如玻璃、树苗、门): 
 +        BlockRenderLayerMap.INSTANCE.putBlock(TutorialBlocks.MY_BLOCK, class_1921.method_23581()); 
 +         
 +        // 如果方块一些部分是半透明的(例如冰、染色玻璃、传送门): 
 +        BlockRenderLayerMap.INSTANCE.putBlock(TutorialBlocks.MY_BLOCK, class_1921.method_23583());
     }     }
- 
-    [...] 
 } }
 +</yarncode>
  
-</code>+您可能还想使方块非不透明。为此,可在方块设置中使用 ''<yarn method_22488>'' 方法,这也会使方块内部也渲染。
  
-You probably also want to make your block transparent. To do that, use the ''Material'' constructor to set ''blocksLight'' to false. +<yarncode java> 
-<code java> +     public static final Block MY_BLOCK = new Block(AbstractBlock.Settings.create().method_22488()); 
-class MyBlock extends Block { +</yarncode>
-     private static Material myMaterial = new Material( +
-            MaterialColor.AIR,   //materialColor, +
-            false,   //isLiquid, +
-            false, // isSolid, +
-            true, // blocksMovement, +
-            false,// blocksLight,  <----- Important part, the other parts change as you wish +
-            true,//  !requiresTool, +
-            false, //  burnable, +
-            false,//  replaceable, +
-            PistonBehavior.NORMAL//  pistonBehavior +
-    );+
  
-    public MyBlock() { +如果你不像这样把方块标记为非不透明的,则方块后面的面不会渲染,你将会“看穿”整个世界(到虚空或渲染范围之外之类的)。
-        super(Settings.of(myMaterial); +
-    }+
  
-    [...]+确保在 [[documentation:fabric_mod_json|fabric.mod.json]] 中添加了客户端入口点,你可以这样做: 
 +<code javascript> 
 +
 +  [...] 
 +  "entrypoints":
 +    "main":
 +      "net.fabricmc.example.ExampleMod" 
 +    ], 
 +    "client":
 +      "net.fabricmc.example.ExampleModClient" 
 +    ] 
 +  }, 
 +  [...]
 } }
- 
 </code> </code>
 +注意:对于不透明但不完整的方块,你可能需要覆盖 ''<yarn method_9530>'' 方法并返回非完整的图形,以避免看穿整个世界。
  
-===== Making a block invisible ===== +===== 使方块不可见 ===== 
-First we need to make the block appear invisible. +首先,我们需要使该方块看起来不可见。为此,我们在方块类中重写 ''<yarn method_9604>'' 并返回 ''<yarn class_2464>.<yarn field_11455>'' 
-To do this we override ''getRenderType'' in our block class and return ''BlockRenderType.INVISIBLE'': +<yarncode java>
-<code java>+
     @Override     @Override
-    public BlockRenderType getRenderType(BlockState blockState) { +    public class_2464 method_9604(class_2680 state) { 
-        return BlockRenderType.INVISIBLE;+        return class_2464.field_11455;
     }     }
-</code+</yarncode
-We then need to make our block unselectable by making its `outlineShape` be non-existent. + 
-So override ''getOutlineShapeand return an empty ''VoxelShape'': +然后,我们需要通过使其形状不存在,从而使方块不能被选中。因此,覆盖 ''<yarn method_9530>'' 并返回一个空的 ''<yarn class_265>'': 
-<code java>+ 
 +<yarncode java>
     @Override     @Override
-    public VoxelShape getOutlineShape(BlockState blockStateBlockView blockView, BlockPos blockPosEntityContext entityContext) { +    public class_265 method_9530(class_2680 stateclass_1922 blockView, class_2338 posclass_3726 context) { 
-       return VoxelShapes.cuboid(0,0,0,0,0,0);+       return class_259.method_1073();
     }     }
-</code>+</yarncode>
zh_cn/tutorial/blockappearance.1576733995.txt.gz · Last modified: 2019/12/19 05:39 by lightcolour