本文整理匯總了PHP中pocketmine\Player::removeAttachment方法的典型用法代碼示例。如果您正苦於以下問題:PHP Player::removeAttachment方法的具體用法?PHP Player::removeAttachment怎麽用?PHP Player::removeAttachment使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pocketmine\Player
的用法示例。
在下文中一共展示了Player::removeAttachment方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: resetPerms
public function resetPerms(Player $pl)
{
$n = strtolower($pl->getName());
if (isset($this->perms[$n])) {
$attach = $this->perms[$n];
unset($this->perms[$n]);
$pl->removeAttachment($attach);
$pl->recalculatePermissions();
}
}
示例2: removeMember
public function removeMember(Player $player)
{
if (in_array($player->getName(), $this->members)) {
unset($this->members[array_search($player->getName(), $this->members)]);
$this->getMain()->saveMembers();
$attachment = $player->addAttachment($this->getMain()->getServer()->getPluginManager()->getPlugin("RankUp"));
foreach ($this->permsToSet as $permToSet) {
$attachment->unsetPermission($permToSet);
}
$player->removeAttachment($attachment);
foreach ($this->exit as $cmd) {
$this->getMain()->getServer()->dispatchCommand(new ConsoleCommandSender(), str_replace("{name}", $player->getName(), $cmd));
}
} else {
return false;
}
}
示例3: removeAttachment
/**
* @param Player $player
*/
public function removeAttachment(Player $player)
{
$uuid = $player->getUniqueId();
if (isset($this->attachments[$uuid]) and $this->attachments[$uuid] instanceof PermissionAttachment) {
$player->removeAttachment($this->attachments[$uuid]);
unset($this->attachments[$uuid]);
}
}
示例4: unregisterPlayer
/**
* @param Player $player
*/
public function unregisterPlayer(Player $player)
{
$this->getLogger()->debug($this->getMessage("logger_messages.unregisterPlayer", $player->getName()));
$uniqueId = $player->getUniqueId()->toString();
if (isset($this->attachments[$uniqueId])) {
$player->removeAttachment($this->attachments[$uniqueId]);
}
unset($this->attachments[$uniqueId]);
}
示例5: removeAttachment
/**
* @param Player $player
*/
public function removeAttachment(Player $player)
{
if (isset($this->attachments[$player->getUniqueId()])) {
$player->removeAttachment($this->attachments[$player->getUniqueId()]);
unset($this->attachments[$player->getUniqueId()]);
}
}
示例6: removeAttachment
public function removeAttachment(Player $player)
{
$player->removeAttachment($this->getAttachment($player));
unset($this->attachment[$player->getName()]);
}