Compare commits

...

2 Commits

Author SHA1 Message Date
Adam Johnson 92c53d3ea5
Fix missed action version update. 3 months ago
Adam Johnson 582921be44
Don't overwrite trimesh vertices with hull vertices. 3 months ago
  1. 2
      .github/workflows/ci_build.yml
  2. 1
      korman/exporter/physics.py

2
.github/workflows/ci_build.yml

@ -68,7 +68,7 @@ jobs:
- name: Upload Korman+Blender Bundle
if: startsWith(github.ref, 'refs/tags')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: korman-blender-${{ matrix.cfg.str }}
path: build/package

1
korman/exporter/physics.py

@ -300,6 +300,7 @@ class PhysicsConverter:
bo.name, volume
)
self._export_trimesh(bo, physical, local_space, mat)
return
if local_space:
physical.pos = hsVector3(*mat.to_translation())

Loading…
Cancel
Save