版本信息
你使用的系统:win10 64位
你是用的JDK: Java8 64位
你使用的IDE:IntelliJ IDEA
Forge版本: 1.12.2-14.23.5.2847
Minecraft版本: 1.12.2
Mapping 文件版本: stable_58
出错图
错误情况简述
在一些特殊角度的时候,模型离camera远的部分覆盖了前面的部分,就像是深度检测没生效
相关代码
cable.json
(blockstate文件)
{
"multipart": [
{ "apply": { "model": "integratedcontrol:cable_mid" }},
{ "when": { "up": "true" },
"apply": { "model": "integratedcontrol:cable_side_top"}
},
{ "when": { "down": "true" },
"apply": { "model": "integratedcontrol:cable_side_bottom"}
},
{ "when": { "north": "true" },
"apply": { "model": "integratedcontrol:cable_side", "uvlock": true}
},
{ "when": { "east": "true" },
"apply": { "model": "integratedcontrol:cable_side", "y": 90, "uvlock": true}
},
{ "when": { "south": "true" },
"apply": { "model": "integratedcontrol:cable_side", "y": 180, "uvlock": true}
},
{ "when": { "west": "true" },
"apply": { "model": "integratedcontrol:cable_side", "y": 270, "uvlock": true}
}
]
}
模型(使用blockbench制作)