本文整理汇总了Java中cn.nukkit.nbt.tag.CompoundTag.getByte方法的典型用法代码示例。如果您正苦于以下问题:Java CompoundTag.getByte方法的具体用法?Java CompoundTag.getByte怎么用?Java CompoundTag.getByte使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cn.nukkit.nbt.tag.CompoundTag
的用法示例。
在下文中一共展示了CompoundTag.getByte方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initEntity
import cn.nukkit.nbt.tag.CompoundTag; //导入方法依赖的package包/类
protected void initEntity() {
if (this.namedTag.contains("ActiveEffects")) {
ListTag<CompoundTag> effects = this.namedTag.getList("ActiveEffects", CompoundTag.class);
for (CompoundTag e : effects.getAll()) {
int amplifier = e.getByte("Amplifier") & 0xff; // 0-255 only
Effect effect = Effect.getEffect(e.getByte("Id"));
if (effect == null) {
continue;
}
effect.setAmplifier(amplifier).setDuration(e.getInt("Duration")).setVisible(e.getBoolean("showParticles"));
this.addEffect(effect);
}
}
if (this.namedTag.contains("CustomName")) {
this.setNameTag(this.namedTag.getString("CustomName"));
if (this.namedTag.contains("CustomNameVisible")) {
this.setNameTagVisible(this.namedTag.getBoolean("CustomNameVisible"));
}
}
this.scheduleUpdate();
}
示例2: ChunkSection
import cn.nukkit.nbt.tag.CompoundTag; //导入方法依赖的package包/类
public ChunkSection(CompoundTag nbt) {
this.y = nbt.getByte("Y");
this.blocks = nbt.getByteArray("Blocks");
this.data = nbt.getByteArray("Data");
this.blockLight = nbt.getByteArray("BlockLight");
this.skyLight = nbt.getByteArray("SkyLight");
}