Blender exports a three.js animation - bones rotate strangely

后端 未结 4 649
孤独总比滥情好
孤独总比滥情好 2020-12-09 23:01

I\'m currently trying to export an animated blender model to three.js using the exporter of three.js (github.com/mrdoob/three.js/tree/dev/utils/exporters/blender/2.66/script

相关标签:
4条回答
  • 2020-12-09 23:38

    Also make absolutely sure, that the three.js blender exporter is not set to to align your model in any way. (I had it set to "center" and it took me 4 hours to figure out why my bones rotate around some spot that was NOT the spot they rotate around in blender.)

    0 讨论(0)
  • 2020-12-09 23:44

    I've downloaded both the tutorial package and your code. The code aspect looks fine. So looking over the model I see that your vertex groups are not well defined. When I select the Left_collarbone bone, left_upperarm, left_lowerarm I seem to be getting vertices from parts of the torso, head, etc... in the mix. I suspect that what your seeing with your funky shoulder stretch animation is that the collarbone is part of some other groupings and when exported the "weights" of the mesh are confused causing the bone to pull badly on the mesh. Try cleaning up the vertex groups and see if that helps. @lukasz1985 has the right idea, nice one! +1

    P.S. Thanks for the link to the cool animation tutorials for Three.js :)

    0 讨论(0)
  • 2020-12-09 23:47

    I had an issue where calling THREE.GeometryUtils.center(geometryWithBones) on a the newly imported geometry would make all the skinning look very strange. Getting rid of that fixed things.

    0 讨论(0)
  • 2020-12-09 23:55

    The problem was that the location/rotation/scale were not reset before exporting the model.

    Before You export Your model, select the mesh and press CTRL+A and select location. Repeat for rotation and scale, then select the armature and do the same. Now it works.

    0 讨论(0)
提交回复
热议问题