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


Java WorldServer.getEntityByID方法代码示例

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


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

示例1: entityLoaded

import net.minecraft.world.WorldServer; //导入方法依赖的package包/类
public static void entityLoaded(Entity p_entityLoaded_0_)
{
    if (p_entityLoaded_0_ instanceof EntityLiving)
    {
        EntityLiving entityliving = (EntityLiving)p_entityLoaded_0_;
        WorldServer worldserver = Config.getWorldServer();

        if (worldserver != null)
        {
            Entity entity = worldserver.getEntityByID(p_entityLoaded_0_.getEntityId());

            if (entity instanceof EntityLiving)
            {
                EntityLiving entityliving1 = (EntityLiving)entity;
                UUID uuid = entityliving1.getUniqueID();
                long i = uuid.getLeastSignificantBits();
                int j = (int)(i & 2147483647L);
                entityliving.randomMobsId = j;
                entityliving.spawnPosition = entityliving.getPosition();
                entityliving.spawnBiome = worldserver.getBiomeGenForCoords(entityliving.spawnPosition);
            }
        }
    }
}
 
开发者ID:SkidJava,项目名称:BaseClient,代码行数:25,代码来源:RandomMobs.java

示例2: entityLoaded

import net.minecraft.world.WorldServer; //导入方法依赖的package包/类
public static void entityLoaded(Entity p_entityLoaded_0_, World p_entityLoaded_1_)
{
    if (p_entityLoaded_0_ instanceof EntityLiving)
    {
        if (p_entityLoaded_1_ != null)
        {
            EntityLiving entityliving = (EntityLiving)p_entityLoaded_0_;
            entityliving.spawnPosition = entityliving.getPosition();
            entityliving.spawnBiome = p_entityLoaded_1_.getBiomeGenForCoords(entityliving.spawnPosition);
            WorldServer worldserver = Config.getWorldServer();

            if (worldserver != null)
            {
                Entity entity = worldserver.getEntityByID(p_entityLoaded_0_.getEntityId());

                if (entity instanceof EntityLiving)
                {
                    EntityLiving entityliving1 = (EntityLiving)entity;
                    UUID uuid = entityliving1.getUniqueID();
                    long i = uuid.getLeastSignificantBits();
                    int j = (int)(i & 2147483647L);
                    entityliving.randomMobsId = j;
                }
            }
        }
    }
}
 
开发者ID:SkidJava,项目名称:BaseClient,代码行数:28,代码来源:RandomMobs.java

示例3: entityLoaded

import net.minecraft.world.WorldServer; //导入方法依赖的package包/类
public static void entityLoaded(Entity p_entityLoaded_0_, World p_entityLoaded_1_)
{
    if (p_entityLoaded_0_ instanceof EntityLiving)
    {
        if (p_entityLoaded_1_ != null)
        {
            EntityLiving entityliving = (EntityLiving)p_entityLoaded_0_;
            entityliving.spawnPosition = entityliving.getPosition();
            entityliving.spawnBiome = p_entityLoaded_1_.getBiome(entityliving.spawnPosition);
            WorldServer worldserver = Config.getWorldServer();

            if (worldserver != null)
            {
                Entity entity = worldserver.getEntityByID(p_entityLoaded_0_.getEntityId());

                if (entity instanceof EntityLiving)
                {
                    EntityLiving entityliving1 = (EntityLiving)entity;
                    UUID uuid = entityliving1.getUniqueID();
                    long i = uuid.getLeastSignificantBits();
                    int j = (int)(i & 2147483647L);
                    entityliving.randomMobsId = j;
                }
            }
        }
    }
}
 
开发者ID:sudofox,项目名称:Backmemed,代码行数:28,代码来源:RandomMobs.java


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