本文整理匯總了Java中cn.nukkit.Player.getPitch方法的典型用法代碼示例。如果您正苦於以下問題:Java Player.getPitch方法的具體用法?Java Player.getPitch怎麽用?Java Player.getPitch使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cn.nukkit.Player
的用法示例。
在下文中一共展示了Player.getPitch方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: place
import cn.nukkit.Player; //導入方法依賴的package包/類
@Override
public boolean place(Item item, Block block, Block target, BlockFace face, double fx, double fy, double fz, Player player) {
if (!(player.isOp() && player.isCreative())) {
return false;
}
int f = 0;
if (player instanceof Player) {
double pitch = player.getPitch();
if (Math.abs(pitch) >= 45) {
if (pitch < 0) {
f = 4;
} else {
f = 5;
}
} else {
f = player.getDirection().getHorizontalIndex();
}
}
int[] faces = new int[]{4, 2, 5, 3, 0, 1};
this.meta = faces[f];
this.getLevel().setBlock(block, this, true, true);
CompoundTag nbt = new CompoundTag()
.putString("id", BlockEntity.COMMAND_BLOCK)
.putInt("x", this.getFloorX())
.putInt("y", this.getFloorY())
.putInt("z", this.getFloorZ())
.putInt("commandBlockMode", this.getMode());
new BlockEntityCommandBlock(this.level.getChunk(this.getFloorX() >> 4, this.getFloorZ() >> 4), nbt);
return true;
}
示例2: place
import cn.nukkit.Player; //導入方法依賴的package包/類
@Override
public boolean place(Item item, Block block, Block target, BlockFace face, double fx, double fy, double fz, Player player) {
int f = 0;
if (player instanceof Player) {
double pitch = player.getPitch();
if (Math.abs(pitch) >= 45) {
if (pitch < 0) {
f = 4;
} else {
f = 5;
}
} else {
f = player.getDirection().getHorizontalIndex();
}
}
int[] faces = new int[]{4, 2, 5, 3, 0, 1};
this.meta = faces[f];
this.getLevel().setBlock(block, this, true, true);
CompoundTag nbt = new CompoundTag()
.putList(new ListTag<>("Items"))
.putString("id", BlockEntity.DISPENSER)
.putInt("x", (int) this.x)
.putInt("y", (int) this.y)
.putInt("z", (int) this.z);
if (item.hasCustomName()) {
nbt.putString("CustomName", item.getCustomName());
}
if (item.hasCustomBlockData()) {
Map<String, Tag> customData = item.getCustomBlockData().getTags();
for (Map.Entry<String, Tag> tag : customData.entrySet()) {
nbt.put(tag.getKey(), tag.getValue());
}
}
new BlockEntityDispenser(this.getLevel().getChunk((int) this.x >> 4, (int) this.z >> 4), nbt);
return true;
}
示例3: place
import cn.nukkit.Player; //導入方法依賴的package包/類
@Override
public boolean place(Item item, Block block, Block target, BlockFace face, double fx, double fy, double fz, Player player) {
int f = 0;
if (player instanceof Player) {
double pitch = player.getPitch();
if (Math.abs(pitch) >= 45) {
if (pitch < 0) {
f = 4;
} else {
f = 5;
}
} else {
f = player.getDirection().getHorizontalIndex();
}
}
int[] faces = new int[]{4, 2, 5, 3, 0, 1};
this.meta = faces[f];
this.getLevel().setBlock(block, this, true, true);
CompoundTag nbt = new CompoundTag()
.putList(new ListTag<>("Items"))
.putString("id", BlockEntity.DROPPER)
.putInt("x", (int) this.x)
.putInt("y", (int) this.y)
.putInt("z", (int) this.z);
if (item.hasCustomName()) {
nbt.putString("CustomName", item.getCustomName());
}
if (item.hasCustomBlockData()) {
Map<String, Tag> customData = item.getCustomBlockData().getTags();
for (Map.Entry<String, Tag> tag : customData.entrySet()) {
nbt.put(tag.getKey(), tag.getValue());
}
}
new BlockEntityDropper(this.getLevel().getChunk((int) this.x >> 4, (int) this.z >> 4), nbt);
return true;
}