Everything I've found seems to indicate that in order to export a vertex animation a point cache file must also be generated, but that means in addition to the FBX file a whole new folder with that cache data must also be built. Is there no way to store the (vertex) animation data entirely in the FBX file?
相关问题
- Animate a WPF Window left and right with a shake e
- jQuery, how to make synchronous animations?
- 3D “cube” animation between Activities in Android
- Fade UITextField text
- Slick Animation - There must be one duration per f
相关文章
- Keep constant number of visible circles in 3D anim
- Animate opacity on hover (jQuery)
- How to set the image resolution for animations?
- Animate height of groupbox from 0 to auto
- Custom transition animation unknown delay between
- Animation with animationSet() in android
- How to make React Native Animated.View clickable?
- AnimatedVectorDrawable does not animate
The FBX file format stores mesh topology, shapes and skin deformers, but not the actual vertex cache data since it can be of various formats, such as MCX (Maya), PC2 (Max) or ABC (Alembic). Also, for access and performance reasons, it is preferable that the cache data stays in a separate file so that software can read asynchronously from it without having to deal with the complexity of the FBX data model.
That's correct. The FBX stores the mesh/topology, and the point cache stores the offsets of the vertices over time.