-
-
Notifications
You must be signed in to change notification settings - Fork 21.4k
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
[4.3] Mesh disappears when importing an AnimationLibrary onto a GeneralSkeleton #91893
Comments
Bisect points to #90064 as the culprit: |
I think this is an intended behaviot rather than a bug. Is the Hips scale track you intended? If you don't need it, enable the remove unimportant track option. |
Oh sorry I, the scale track is not removed with that option. So, do we need an additional option to remove the scale track? Also, I am wondering what the scale track is on the software that created the glb. We need to determine if there is a problem with the scale track conversion (Apply Node Scale) or if the animation is oddly to begin with on DCC. |
For the mesh I downloaded the fbx from mixamo, imported into the latest Blender, changed nothing and immediately exported as glb with default options - just the animation checkbox unchecked. |
I, @TokageItLab and @lyuma are looking into this. |
The problem is that after applying Apply Node Scale, the Scale track values mismatch with the Skeleton's rest. Even in 4.2.1, Remove Immutable Tracks did not specifically hide the problem, but guaranteed that the rest would match the Skeleton Node, so removal there made sense. Since #90064, Remove Immutable Tracks is now done after Apply Node Scale, so the comparison needs to be changed. @lyuma The current importer process matches which of the following flows? Or other?
If Remove Immutable Tracks is running after Apply Node Scale, there are two possible fixes.
Probably the former should be chosen, since the latter could corrupt the animation if the bones have scale intendedly as glTF. But considering the role of retargeting in matching the appearance, the latter may be preferable, then we need to be careful if the glTF specification allows such cases as Scale of 0. |
Probably #3.
This is incorrect, because it will remove things that match the old bone rest which will then lead to incorrect blending after we change the rest. I strongly believe that this bug is unrelated to Remove Immutable Tracks. It only appeared to be related because remove immutable was incorrect previously
This is kind of what I am trying, but the code is written to only touch the toplevel bones (get_parentless_bones) |
Tested versions
System information
Windows 11, geForce 4080, Godot 4.3-dev6, Forward+
Issue description
I have an anim library I've applied a bone map on and an armature with mesh I've also applied a bone map on. Both are taken from mixamo. When I create an inherited scene from the mesh GLB, add an animation player and import my anim library in 4.2, things work exactly as they should. The same process in 4.3-dev6 causes the entire mesh to disappear.
Example video: https://www.youtube.com/watch?v=9Ob5M0YIgQs
Steps to reproduce
Minimal reproduction project (MRP)
Godot 4.2.2 project: TestMixamo42.zip
Godot 4.3-dev6 project: testmixamo43d6.zip
In both:
The text was updated successfully, but these errors were encountered: