net.minestom.server.entity.metadata.other.FallingBlockMeta 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.entity.metadata.other;
import net.minestom.server.coordinate.Point;
import net.minestom.server.coordinate.Vec;
import net.minestom.server.entity.Entity;
import net.minestom.server.entity.Metadata;
import net.minestom.server.entity.MetadataHolder;
import net.minestom.server.entity.metadata.EntityMeta;
import net.minestom.server.entity.metadata.ObjectDataProvider;
import net.minestom.server.instance.block.Block;
import org.jetbrains.annotations.NotNull;
public class FallingBlockMeta extends EntityMeta implements ObjectDataProvider {
public static final byte OFFSET = EntityMeta.MAX_OFFSET;
public static final byte MAX_OFFSET = OFFSET + 1;
private Block block = Block.STONE;
public FallingBlockMeta(@NotNull Entity entity, @NotNull MetadataHolder metadata) {
super(entity, metadata);
}
public Point getSpawnPosition() {
return super.metadata.getIndex(OFFSET, Vec.ZERO);
}
public void setSpawnPosition(Point value) {
super.metadata.setIndex(OFFSET, Metadata.BlockPosition(value));
}
@NotNull
public Block getBlock() {
return block;
}
/**
* Sets which block to display.
* This is possible only before spawn packet is sent.
*
* @param block which block to display.
*/
public void setBlock(@NotNull Block block) {
this.block = block;
}
@Override
public int getObjectData() {
return block.stateId();
}
@Override
public boolean requiresVelocityPacketAtSpawn() {
return false;
}
}