本文整理了Java中net.minecraft.world.World.getCurrentMoonPhaseFactor()
方法的一些代码示例,展示了World.getCurrentMoonPhaseFactor()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。World.getCurrentMoonPhaseFactor()
方法的具体详情如下:
包路径:net.minecraft.world.World
类名称:World
方法名:getCurrentMoonPhaseFactor
暂无
代码示例来源:origin: SleepyTrousers/EnderIO
@Override
public float getCurrentMoonPhaseFactor() {
return wrapped.getCurrentMoonPhaseFactor();
}
代码示例来源:origin: amadornes/MCMultiPart
@Override
public float getCurrentMoonPhaseFactor() {
return getActualWorld().getCurrentMoonPhaseFactor();
}
代码示例来源:origin: CyclopsMC/EvilCraft
/**
* If at the current time in the given world werewolves can appear.
* @param world The world.
* @return If it is werewolf party time.
*/
public static boolean isWerewolfTime(World world) {
return world.getCurrentMoonPhaseFactor() == 1.0
&& !MinecraftHelpers.isDay(world)
&& world.getDifficulty() != EnumDifficulty.PEACEFUL;
}
内容来源于网络,如有侵权,请联系作者删除!