Reputation: 168
What's the best 3D format to use with away3D for animations ? And how use it ?
Upvotes: 1
Views: 3157
Reputation: 665
In Away3D 4.0 you can use MD5 (supports skeleton-based animation, more about this format on modwiki.net) MD2 (supports frame-based animation more about this format on wikipedia) or AWD (supports skeleton-based animation, more about this format on code.google). I can't answer you which is better. Both have pros and cons. Read about differences here.
You can find code examples on Away3D 4.0 github project site
Upvotes: 0
Reputation: 5577
All the file formats supported are listed in the documentation for loaders: http://away3d.com/livedocs/3.5.0_lib/away3d/loaders/package-detail.html
Collada is the best format to use for skeletal animation, but Collada exporters can sometimes be finicky so the simplest format for animated 3D models is md2.
Upvotes: 1