37 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.world.level.block;
 | |
| 
 | |
| import com.mojang.serialization.MapCodec;
 | |
| import com.mojang.serialization.codecs.RecordCodecBuilder;
 | |
| import net.minecraft.core.BlockPos;
 | |
| import net.minecraft.core.particles.ColorParticleOption;
 | |
| import net.minecraft.core.particles.ParticleTypes;
 | |
| import net.minecraft.util.ExtraCodecs;
 | |
| import net.minecraft.util.ParticleUtils;
 | |
| import net.minecraft.util.RandomSource;
 | |
| import net.minecraft.world.level.Level;
 | |
| import net.minecraft.world.level.block.state.BlockBehaviour;
 | |
| 
 | |
| public class TintedParticleLeavesBlock extends LeavesBlock {
 | |
| 	public static final MapCodec<TintedParticleLeavesBlock> CODEC = RecordCodecBuilder.mapCodec(
 | |
| 		instance -> instance.group(
 | |
| 				ExtraCodecs.floatRange(0.0F, 1.0F).fieldOf("leaf_particle_chance").forGetter(tintedParticleLeavesBlock -> tintedParticleLeavesBlock.leafParticleChance),
 | |
| 				propertiesCodec()
 | |
| 			)
 | |
| 			.apply(instance, TintedParticleLeavesBlock::new)
 | |
| 	);
 | |
| 
 | |
| 	public TintedParticleLeavesBlock(float f, BlockBehaviour.Properties properties) {
 | |
| 		super(f, properties);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	protected void spawnFallingLeavesParticle(Level level, BlockPos pos, RandomSource random) {
 | |
| 		ColorParticleOption colorParticleOption = ColorParticleOption.create(ParticleTypes.TINTED_LEAVES, level.getClientLeafTintColor(pos));
 | |
| 		ParticleUtils.spawnParticleBelow(level, pos, random, colorParticleOption);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public MapCodec<? extends TintedParticleLeavesBlock> codec() {
 | |
| 		return CODEC;
 | |
| 	}
 | |
| }
 |