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

Better collada doesn't properly export when there's several armatures on the same mesh #84

Open
ca3games opened this issue Sep 27, 2018 · 3 comments
Labels

Comments

@ca3games
Copy link

I have a female character, the body is rigged with the blender default human rig, and the hair of her is rigged with another armature parented to the head bone.

azuka.new.zip

It works great on blender, but when I export to godot the hair doesn't become parented properly.

I already tried to test this on unity as well and the same problem appears, it seems is not just a godot issue.

@gregdavisd
Copy link

The Hair apature is parented to Spine.006 in Blender but in the DAE file there is no hair bones under Spine.006. Looks like this exporter doesn't support bone parenting. You'll have to merge armatures into one or use object parenting. This export from my exporter, which supports bone parenting, will import into Unity correctly but Godot rejects it.
azuka.zip

@1000h
Copy link

1000h commented Oct 1, 2018

Line 1002:
if (armcount > 1):
self.operator.report(
{"WARNING"}, "Object "{}" refers "
"to more than one armature! "
"This is unsupported.".format(node.name))

@gregdavisd
Copy link

That warning wasn't triggered because the azuka file doesn't actually have multiple armatures per mesh. It has one armature for the body and another armature for two separate hair meshes.

@Calinou Calinou added the bug label Feb 26, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants