Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

blender 4.3 exporter #68

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

blender 4.3 exporter #68

wants to merge 2 commits into from

Conversation

erysdren
Copy link

A really small change that was preventing some of my models from exporting like they had previously. I can't even begin to understand why this was an issue, but they come out fine after this change. I'm on Blender 4.3.0 on Arch Linux.

My one change was on line 763:

before:

quat = posematrix.to_3x3().inverted().transposed().to_quaternion()

after:

try:
    quat = posematrix.to_3x3().inverted().transposed().to_quaternion()
except ValueError as err:
    quat = posematrix.to_3x3().transposed().to_quaternion()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant