本文整理汇总了Java中cn.nukkit.potion.Effect.getEffect方法的典型用法代码示例。如果您正苦于以下问题:Java Effect.getEffect方法的具体用法?Java Effect.getEffect怎么用?Java Effect.getEffect使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cn.nukkit.potion.Effect
的用法示例。
在下文中一共展示了Effect.getEffect方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initEntity
import cn.nukkit.potion.Effect; //导入方法依赖的package包/类
protected void initEntity() {
if (this.namedTag.contains("ActiveEffects")) {
ListTag<CompoundTag> effects = this.namedTag.getList("ActiveEffects", CompoundTag.class);
for (CompoundTag e : effects.getAll()) {
Effect effect = Effect.getEffect(e.getByte("Id"));
if (effect == null) {
continue;
}
effect.setAmplifier(e.getByte("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: initEntity
import cn.nukkit.potion.Effect; //导入方法依赖的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();
}
示例3: toNukkit
import cn.nukkit.potion.Effect; //导入方法依赖的package包/类
@SuppressWarnings("deprecation")
public static Effect toNukkit(PotionEffectType type) {
try {
return Effect.getEffect(type.getId());
} catch (ServerException e) {
return new Effect(type.getId(), "bukkit_" + type.getId(), 9, 0, 0);
}
}