ModelTranslator: 终审 Minor——sidecar 用 finally 清理 + average_islands_scale 补捕 TypeError

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
ud18010
2026-07-21 11:54:25 +08:00
co-authored by Claude Opus 4.8
parent 7bab88a447
commit 1c9a7e1ed0
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -40,10 +40,12 @@ def main():
with open(s["uv_polys"], encoding="utf-8") as fp:
polys = _json.load(fp)
render_uv_png(polys, s["uv_preview"])
os.remove(s["uv_polys"])
print(" UV 观察图: %s" % s["uv_preview"])
except Exception as e:
print(" [警告] UV 观察图渲染失败:%s" % e)
finally: # sidecar 是内部临时文件,无论渲染成败都清掉
if os.path.exists(s["uv_polys"]):
os.remove(s["uv_polys"])
for w in s["warnings"]:
print(" [警告] %s" % w)