Using the latest Maya exporter 1.0.0 (OS X) with Maya 2013 I was getting the following error:
// Error: line 0: AttributeError: file /Users/Shared/Autodesk/maya/plug-ins/pyawd/pyio.py line 13: ‘AWD’ object has no attribute ‘mesh_data_blocks’ //
In an attempt to fix the error I modified line 13 of the pyio.py file
from:
write_blocks(awd.mesh_data_blocks)
to:
write_blocks(awd.tri_geom_blocks)
Maya no longer throws an error when exporting and the resulting .awd file is now 30 bytes in size.
However, the imported AWD file is empty when loaded into Away3D 4.0.6 using Loader3D. LoaderEvent.RESOURCE_COMPLETE is dispatched and no errors are generated but there is no visible model. (Prefab 2.116 also says the awd model has loaded but there are no meshes listed).
Thanks