当前位置: 首页>>代码示例>>Java>>正文


Java EntityLivingBase.func_70089_S方法代码示例

本文整理汇总了Java中net.minecraft.entity.EntityLivingBase.func_70089_S方法的典型用法代码示例。如果您正苦于以下问题:Java EntityLivingBase.func_70089_S方法的具体用法?Java EntityLivingBase.func_70089_S怎么用?Java EntityLivingBase.func_70089_S使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在net.minecraft.entity.EntityLivingBase的用法示例。


在下文中一共展示了EntityLivingBase.func_70089_S方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isValid

import net.minecraft.entity.EntityLivingBase; //导入方法依赖的package包/类
private boolean isValid(Entity entity) {
    if (!AngleUtil.isWithinFOV(entity, maxAngle.getValue())) {
        return false;
    }
    if (entity instanceof EntityLivingBase) {
        EntityLivingBase entityLiving = (EntityLivingBase) entity;
        if (!Wrapper.thePlayer().func_70089_S() || !entityLiving.func_70089_S()
                || Wrapper.getDistanceToEntity(entityLiving) > this.range.getValue()) {
            return false;
        }
        if (Wrapper.getDistanceToEntity(entity) < 1.0) {
            return false;
        }
    }
    return EntityUtil.isValid(entity, !raytrace.getValue());
}
 
开发者ID:Ygore,项目名称:bit-client,代码行数:17,代码来源:ModuleAimAssist.java

示例2: isValid_render

import net.minecraft.entity.EntityLivingBase; //导入方法依赖的package包/类
public static boolean isValid_render(Entity entity, boolean raytrace, boolean reverseRaytrace) {
    if (entity == null) return false;

    if (entity == Wrapper.thePlayer()) return false;

    if (entity.field_70128_L) return false;

    if (!Bit.getInstance().getGlobalValueManager().find_bool("players").getValue()
            && entity instanceof EntityPlayer) return false;

    if ((reverseRaytrace ? Wrapper.thePlayer().func_70685_l(entity) : !Wrapper.thePlayer().func_70685_l(entity)) && raytrace)
        return false;

    if (entity instanceof EntityLivingBase) {
        EntityLivingBase entityLiving = (EntityLivingBase) entity;
        if (!Wrapper.thePlayer().func_70089_S() || !entityLiving.func_70089_S()) return false;

        if (!Bit.getInstance().getGlobalValueManager().find_bool("monsters").getValue()
                && EntityUtil.isMonster(entity)) return false;

        if (!Bit.getInstance().getGlobalValueManager().find_bool("animals").getValue()
                && EntityUtil.isAnimal(entity)) return false;

    } else {
        return false;
    }
    return true;
}
 
开发者ID:Ygore,项目名称:bit-client,代码行数:29,代码来源:EntityUtil.java

示例3: isValid

import net.minecraft.entity.EntityLivingBase; //导入方法依赖的package包/类
public static boolean isValid(Entity entity, boolean raytrace) {
    if (entity == null) return false;

    if (entity == Wrapper.thePlayer()) return false;

    if (entity.field_70128_L) return false;

    if (!Wrapper.loadedEntityList().contains(entity)) return false;

    if (!Bit.getInstance().getGlobalValueManager().find_bool("players").getValue()
            && entity instanceof EntityPlayer) return false;

    if (!Wrapper.thePlayer().func_70685_l(entity) && raytrace) return false;

    if (entity instanceof EntityLivingBase) {
        EntityLivingBase entityLiving = (EntityLivingBase) entity;
        if (!Wrapper.thePlayer().func_70089_S() || !entityLiving.func_70089_S()) return false;

        if (Wrapper.isInvisible(entity)
                && !Bit.getInstance().getGlobalValueManager().find_bool("invisibles").getValue()) return false;

        if (entityLiving instanceof EntityPlayer) {
            ItemStack[] armor = ((EntityPlayer) entityLiving).field_71071_by.field_70460_b;
            boolean naked = armor[0] == null && armor[1] == null && armor[2] == null && armor[3] == null;
            if (naked && Bit.getInstance().getGlobalValueManager().find_bool("ignore naked").getValue())
                return false;

            if (Bit.getInstance().getGlobalValueManager().find_bool("teams").getValue()
                    && Wrapper.player_isOnSameTeam(entityLiving)) return false;
            return !Bit.getInstance().getFriendManager().isFriend(Wrapper.getName(entityLiving));
        }
        if (!Bit.getInstance().getGlobalValueManager().find_bool("monsters").getValue()
                && EntityUtil.isMonster(entity)) return false;

        if (!Bit.getInstance().getGlobalValueManager().find_bool("animals").getValue()
                && EntityUtil.isAnimal(entity)) return false;

    } else {
        return false;
    }
    return true;
}
 
开发者ID:Ygore,项目名称:bit-client,代码行数:43,代码来源:EntityUtil.java


注:本文中的net.minecraft.entity.EntityLivingBase.func_70089_S方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。