public static void updateModels()
{
if (itemProperties != null)
{
for (int i = 0; i < itemProperties.length; ++i)
{
CustomItemProperties[] acustomitemproperties = itemProperties[i];
if (acustomitemproperties != null)
{
for (int j = 0; j < acustomitemproperties.length; ++j)
{
CustomItemProperties customitemproperties = acustomitemproperties[j];
if (customitemproperties != null && customitemproperties.type == 1)
{
TextureMap texturemap = Minecraft.getMinecraft().getTextureMapBlocks();
customitemproperties.updateModel(texturemap, itemModelGenerator);
}
}
}
}
}
}
CustomItems.java 文件源码
java
阅读 28
收藏 0
点赞 0
评论 0
项目:BaseClient
作者:
评论列表
文章目录