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


Java AbstractClientPlayer.getDownloadImageSkin方法代码示例

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


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

示例1: TeamSelectionObject

import net.minecraft.client.entity.AbstractClientPlayer; //导入方法依赖的package包/类
public TeamSelectionObject(ScorePlayerTeam p_i45492_2_)
{
    this.field_178676_b = p_i45492_2_;
    this.field_178675_d = Lists.<NetworkPlayerInfo>newArrayList();

    for (String s : p_i45492_2_.getMembershipCollection())
    {
        NetworkPlayerInfo networkplayerinfo = Minecraft.getMinecraft().getNetHandler().getPlayerInfo(s);

        if (networkplayerinfo != null)
        {
            this.field_178675_d.add(networkplayerinfo);
        }
    }

    if (!this.field_178675_d.isEmpty())
    {
        String s1 = ((NetworkPlayerInfo)this.field_178675_d.get((new Random()).nextInt(this.field_178675_d.size()))).getGameProfile().getName();
        this.field_178677_c = AbstractClientPlayer.getLocationSkin(s1);
        AbstractClientPlayer.getDownloadImageSkin(this.field_178677_c, s1);
    }
    else
    {
        this.field_178677_c = DefaultPlayerSkin.getDefaultSkinLegacy();
    }
}
 
开发者ID:Notoh,项目名称:DecompiledMinecraft,代码行数:27,代码来源:TeleportToTeam.java

示例2: TeamSelectionObject

import net.minecraft.client.entity.AbstractClientPlayer; //导入方法依赖的package包/类
public TeamSelectionObject(ScorePlayerTeam p_i45492_2_)
{
    this.team = p_i45492_2_;
    this.players = Lists.<NetworkPlayerInfo>newArrayList();

    for (String s : p_i45492_2_.getMembershipCollection())
    {
        NetworkPlayerInfo networkplayerinfo = Minecraft.getMinecraft().getConnection().getPlayerInfo(s);

        if (networkplayerinfo != null)
        {
            this.players.add(networkplayerinfo);
        }
    }

    if (this.players.isEmpty())
    {
        this.location = DefaultPlayerSkin.getDefaultSkinLegacy();
    }
    else
    {
        String s1 = ((NetworkPlayerInfo)this.players.get((new Random()).nextInt(this.players.size()))).getGameProfile().getName();
        this.location = AbstractClientPlayer.getLocationSkin(s1);
        AbstractClientPlayer.getDownloadImageSkin(this.location, s1);
    }
}
 
开发者ID:sudofox,项目名称:Backmemed,代码行数:27,代码来源:TeleportToTeam.java

示例3: bindFace

import net.minecraft.client.entity.AbstractClientPlayer; //导入方法依赖的package包/类
public static void bindFace(String p_bindFace_0_, String p_bindFace_1_)
{
    ResourceLocation resourcelocation = AbstractClientPlayer.getLocationSkin(p_bindFace_1_);

    if (resourcelocation == null)
    {
        resourcelocation = DefaultPlayerSkin.getDefaultSkin(UUIDTypeAdapter.fromString(p_bindFace_0_));
    }

    AbstractClientPlayer.getDownloadImageSkin(resourcelocation, p_bindFace_1_);
    Minecraft.getMinecraft().getTextureManager().bindTexture(resourcelocation);
}
 
开发者ID:Notoh,项目名称:DecompiledMinecraft,代码行数:13,代码来源:RealmsScreen.java

示例4: PlayerMenuObject

import net.minecraft.client.entity.AbstractClientPlayer; //导入方法依赖的package包/类
public PlayerMenuObject(GameProfile profileIn)
{
    this.profile = profileIn;
    this.resourceLocation = AbstractClientPlayer.getLocationSkin(profileIn.getName());
    AbstractClientPlayer.getDownloadImageSkin(this.resourceLocation, profileIn.getName());
}
 
开发者ID:sudofox,项目名称:Backmemed,代码行数:7,代码来源:PlayerMenuObject.java


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