本文整理匯總了PHP中BukkitPE\item\Item::getCreativeItem方法的典型用法代碼示例。如果您正苦於以下問題:PHP Item::getCreativeItem方法的具體用法?PHP Item::getCreativeItem怎麽用?PHP Item::getCreativeItem使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類BukkitPE\item\Item
的用法示例。
在下文中一共展示了Item::getCreativeItem方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: sendContents
/**
* @param Player|Player[] $target
*/
public function sendContents($target)
{
if ($target instanceof Player) {
$target = [$target];
}
$pk = new ContainerSetContentPacket();
$pk->slots = [];
$holder = $this->getHolder();
if ($holder instanceof Player and $holder->isCreative()) {
// mwvent - return because this packet causes problems - TODO: why?
return;
//TODO: Remove this workaround because of broken client
foreach (Item::getCreativeItems() as $i => $item) {
$pk->slots[$i] = Item::getCreativeItem($i);
}
} else {
for ($i = 0; $i < $this->getSize(); ++$i) {
//Do not send armor by error here
$pk->slots[$i] = $this->getItem($i);
}
}
foreach ($target as $player) {
$pk->hotbar = [];
if ($player === $this->getHolder()) {
for ($i = 0; $i < $this->getHotbarSize(); ++$i) {
$index = $this->getHotbarSlotIndex($i);
$pk->hotbar[] = $index <= -1 ? -1 : $index + 9;
}
}
if (($id = $player->getWindowId($this)) === -1 or $player->spawned !== true) {
$this->close($player);
continue;
}
$pk->windowid = $id;
$player->dataPacket(clone $pk);
}
}