User Tools

Site Tools


zh_cn:tutorial:waterloggable

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
zh_cn:tutorial:waterloggable [2024/08/24 14:24] – 更新代码 solidblockzh_cn:tutorial:waterloggable [2024/10/27 14:59] (current) solidblock
Line 48: Line 48:
  
 覆盖 ''getStateForNeighborUpdate'',以正确地处理水流。 覆盖 ''getStateForNeighborUpdate'',以正确地处理水流。
 +
 +//1.21.2 之前的版本,请这么写://
 <yarncode java> <yarncode java>
     @Override     @Override
     public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState neighborState, WorldAccess world, BlockPos pos, BlockPos neighborPos) {     public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState neighborState, WorldAccess world, BlockPos pos, BlockPos neighborPos) {
         if (state.get(WATERLOGGED)) {         if (state.get(WATERLOGGED)) {
-            // 1.17 之前是这么写的:world.getFluidTickScheduler().schedule(pos, Fluids.WATER, Fluids.WATER.getTickRate(world));+            // 对于 1.17 以及更低版本 
 +            // world.getFluidTickScheduler().schedule(pos, Fluids.WATER, Fluids.WATER.getTickRate(world)); 
 +            // 对于 1.18 之后、1.21.2 之前的版本:
             world.method_39281(pos, Fluids.WATER, Fluids.WATER.getTickRate(world));             world.method_39281(pos, Fluids.WATER, Fluids.WATER.getTickRate(world));
         }         }
  
         return super.getStateForNeighborUpdate(state, direction, neighborState, world, pos, neighborPos);         return super.getStateForNeighborUpdate(state, direction, neighborState, world, pos, neighborPos);
 +    }
 +</yarncode>
 +
 +//1.21.2 以及更高的版本,请这么写://
 +<yarncode java>
 +    @Override
 +    public BlockState getStateForNeighborUpdate(BlockState state, WorldView world, ScheduledTickView tickView, BlockPos pos, Direction direction, BlockPos neighborPos, BlockState neighborState, Random random) {
 +        if (state.get(WATERLOGGED)) {
 +            // For versions since 1.21.2:
 +            tickView.scheduleFluidTick(pos, Fluids.WATER, Fluids.WATER.getTickRate(world));
 +        }
 +
 +        return super.getStateForNeighborUpdate(state, world, tickView, pos, direction, neighborPos, neighborState, random);
     }     }
 </yarncode> </yarncode>
  
 现在方块可含水了,并且与水有关的功能都能正常运作。 现在方块可含水了,并且与水有关的功能都能正常运作。
zh_cn/tutorial/waterloggable.1724509461.txt.gz · Last modified: 2024/08/24 14:24 by solidblock