Skip to content

Commit

Permalink
feat: skip blender 3.1.2 workaround in new blender
Browse files Browse the repository at this point in the history
  • Loading branch information
saturday06 committed Dec 15, 2024
1 parent 926427f commit 0dc0b72
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/io_scene_vrm/exporter/vrm1_exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,10 @@ def mount_skinned_mesh_parent(self) -> Iterator[None]:
yield
return

if bpy.app.version >= (3, 2, 1):
yield
return

# Blender 3.1.2付属アドオンのglTF 2.0エクスポート処理には次の条件をすべて満たす
# ときinverseBindMatricesが不正なglbが出力される:
# - アーマチュアの子孫になっていないメッシュがそのアーマチュアのボーンに
Expand Down

0 comments on commit 0dc0b72

Please sign in to comment.