diff --git a/korman/exporter/physics.py b/korman/exporter/physics.py index cc26c32..976b171 100644 --- a/korman/exporter/physics.py +++ b/korman/exporter/physics.py @@ -283,7 +283,7 @@ class PhysicsConverter: physical.rot = utils.quaternion(mat.to_quaternion()) bmesh.ops.scale(mesh, vec=mat.to_scale(), verts=mesh.verts) else: - mesh.transform(bo.matrix_world) + mesh.transform(mat) result = bmesh.ops.convex_hull(mesh, input=mesh.verts, use_existing_faces=False) BMVert = bmesh.types.BMVert