/**
* Returns a new NBTTagList filled with the specified floats
*/
protected NBTTagList newFloatNBTList(float ... p_70049_1_)
{
NBTTagList nbttaglist = new NBTTagList();
float[] afloat = p_70049_1_;
int i = p_70049_1_.length;
for (int j = 0; j < i; ++j)
{
float f1 = afloat[j];
nbttaglist.appendTag(new NBTTagFloat(f1));
}
return nbttaglist;
}
Entity.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:TickDynamic
作者:
评论列表
文章目录