本文整理汇总了Java中net.minecraft.world.storage.WorldInfo.getSpawnY方法的典型用法代码示例。如果您正苦于以下问题:Java WorldInfo.getSpawnY方法的具体用法?Java WorldInfo.getSpawnY怎么用?Java WorldInfo.getSpawnY使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.world.storage.WorldInfo
的用法示例。
在下文中一共展示了WorldInfo.getSpawnY方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: teleport
import net.minecraft.world.storage.WorldInfo; //导入方法依赖的package包/类
public void teleport(Entity entity, World world) {
EntityPlayerMP playerMP = (EntityPlayerMP) entity;
double dx = 0;
double dy = 0;
double dz = 0;
WorldInfo wi = worldserver.getWorldInfo();
if (wi != null) {
dx = wi.getSpawnX();
dy = wi.getSpawnY();
dz = wi.getSpawnZ();
}
// check for zeros
if (dx == 0 && dy == 0 && dz == 0) {
// Set height to something big
dy = 250;
// Drop down until find solid
while (world.getBlockState(new BlockPos((int) dx, (int) dy - 1, (int) dz)).equals(Blocks.AIR.getDefaultState()) && dy > 0) {
dy--;
}
// Last check if dy == 0
if (dy == 0) {
dy = 128;
}
}
// Offset locations for accuracy
dx = dx + 0.5d;
dy = dy + 1.0d;
dz = dz + 0.5d;
entity.setPosition(dx, dy, dz);
// Freeze motion
entity.motionX = entity.motionY = entity.motionZ = 0.0D;
playerMP.setPosition(dx, dy, dz);
if (playerMP.world.provider.getDimension() != world.provider.getDimension()) {
playerMP.getServer().getPlayerList().transferPlayerToDimension(playerMP, world.provider.getDimension(), this);
}
entity.setPosition(dx, dy, dz);
}