public class ColorBlock extends BlockWithEntity { public ColorBlock(Settings settings) { super(settings); } @Override protected MapCodec getCodec() { return createCodec(ColorBlock::new); } @Nullable @Override public BlockEntity createBlockEntity(BlockPos pos, BlockState state) { return new ColorBlockEntity(pos, state); } // 自从 1.21.4 开始,不再需要这个方法,因为所有方块实体都默认使用方块模型。 @Override protected BlockRenderType getRenderType(BlockState state) { return BlockRenderType.MODEL; } }