42 lines
1.4 KiB
Java
42 lines
1.4 KiB
Java
package net.minecraft.world.level.block;
|
|
|
|
import com.mojang.serialization.MapCodec;
|
|
import net.minecraft.core.BlockPos;
|
|
import net.minecraft.tags.BlockTags;
|
|
import net.minecraft.util.RandomSource;
|
|
import net.minecraft.world.level.BlockGetter;
|
|
import net.minecraft.world.level.Level;
|
|
import net.minecraft.world.level.block.sounds.AmbientDesertBlockSoundsPlayer;
|
|
import net.minecraft.world.level.block.state.BlockBehaviour;
|
|
import net.minecraft.world.level.block.state.BlockState;
|
|
import net.minecraft.world.phys.shapes.CollisionContext;
|
|
import net.minecraft.world.phys.shapes.VoxelShape;
|
|
|
|
public class DryVegetationBlock extends VegetationBlock {
|
|
public static final MapCodec<DryVegetationBlock> CODEC = simpleCodec(DryVegetationBlock::new);
|
|
private static final VoxelShape SHAPE = Block.column(12.0, 0.0, 13.0);
|
|
|
|
@Override
|
|
public MapCodec<? extends DryVegetationBlock> codec() {
|
|
return CODEC;
|
|
}
|
|
|
|
protected DryVegetationBlock(BlockBehaviour.Properties properties) {
|
|
super(properties);
|
|
}
|
|
|
|
@Override
|
|
protected VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) {
|
|
return SHAPE;
|
|
}
|
|
|
|
@Override
|
|
protected boolean mayPlaceOn(BlockState state, BlockGetter level, BlockPos pos) {
|
|
return state.is(BlockTags.DRY_VEGETATION_MAY_PLACE_ON);
|
|
}
|
|
|
|
@Override
|
|
public void animateTick(BlockState state, Level level, BlockPos pos, RandomSource random) {
|
|
AmbientDesertBlockSoundsPlayer.playAmbientDeadBushSounds(level, pos, random);
|
|
}
|
|
}
|