本文整理匯總了Java中net.minecraft.stats.StatList.getStatKillEntity方法的典型用法代碼示例。如果您正苦於以下問題:Java StatList.getStatKillEntity方法的具體用法?Java StatList.getStatKillEntity怎麽用?Java StatList.getStatKillEntity使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類net.minecraft.stats.StatList
的用法示例。
在下文中一共展示了StatList.getStatKillEntity方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: EntityEggInfo
import net.minecraft.stats.StatList; //導入方法依賴的package包/類
public EntityEggInfo(int id, int baseColor, int spotColor)
{
this.spawnedID = id;
this.primaryColor = baseColor;
this.secondaryColor = spotColor;
this.field_151512_d = StatList.getStatKillEntity(this);
this.field_151513_e = StatList.getStatEntityKilledBy(this);
}
示例2: EntityEggInfo
import net.minecraft.stats.StatList; //導入方法依賴的package包/類
public EntityEggInfo(ResourceLocation p_i47341_1_, int p_i47341_2_, int p_i47341_3_)
{
this.spawnedID = p_i47341_1_;
this.primaryColor = p_i47341_2_;
this.secondaryColor = p_i47341_3_;
this.killEntityStat = StatList.getStatKillEntity(this);
this.entityKilledByStat = StatList.getStatEntityKilledBy(this);
}
示例3: EntityEggInfo
import net.minecraft.stats.StatList; //導入方法依賴的package包/類
public EntityEggInfo(String spawnedIDIn, int primColor, int secondColor)
{
this.spawnedID = spawnedIDIn;
this.primaryColor = primColor;
this.secondaryColor = secondColor;
this.killEntityStat = StatList.getStatKillEntity(this);
this.entityKilledByStat = StatList.getStatEntityKilledBy(this);
}