net.minestom.server.world.biome.BiomeParticle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.world.biome;
import net.kyori.adventure.nbt.CompoundBinaryTag;
import net.minestom.server.particle.Particle;
public record BiomeParticle(float probability, Particle particle) {
public CompoundBinaryTag toNbt() {
return CompoundBinaryTag.builder()
.putFloat("probability", probability)
.put("options", particle.toNbt())
.build();
}
}