本文整理匯總了Java中org.bukkit.World.loadChunk方法的典型用法代碼示例。如果您正苦於以下問題:Java World.loadChunk方法的具體用法?Java World.loadChunk怎麽用?Java World.loadChunk使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.bukkit.World
的用法示例。
在下文中一共展示了World.loadChunk方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: place
import org.bukkit.World; //導入方法依賴的package包/類
/**
* Place the waiting lobby in the world
*/
public void place()
{
this.logger.info("Generating lobby...");
if (this.file.exists())
{
try
{
Vector vector = new Vector(0, 190, 0);
World world = Bukkit.getWorld("world");
world.loadChunk(0, 0);
BukkitWorld bwf = new BukkitWorld(world);
this.editSession = new EditSession(bwf, -1);
this.editSession.setFastMode(true);
CuboidClipboard c1 = SchematicFormat.MCEDIT.load(this.file);
c1.paste(this.editSession, vector, true);
}
catch (MaxChangedBlocksException | IOException | DataException ex)
{
this.logger.log(Level.SEVERE, "Error in world", ex);
}
}
else
{
this.logger.severe("File does not exist. Abort...");
}
this.logger.info("Done.");
}
示例2: getBlock
import org.bukkit.World; //導入方法依賴的package包/類
private Block getBlock(World world, int x, int y, int z)
{
int cx = x >> 4;
int cz = z >> 4;
if ((!world.isChunkLoaded(cx, cz)) && (!world.loadChunk(cx, cz, false)))
return null;
Chunk chunk = world.getChunkAt(cx, cz);
if (chunk == null)
return null;
return chunk.getBlock(x & 0xF, y, z & 0xF);
}