open class LoaderAWD : AMeshLoader
open class LoaderAWD : AMeshLoader
AWD File parser written using the AWD File Format specification. All future additions to the format should adhere to all specification requirements for maximum forward and backward compatibility.
Currently compression is not supported, files will need to be formatted with compression off. This is an option in MAX and should be an option using other exporters. Example AWD parsing
final AWDParser parser = new AWDParser(this, new File(Environment.getExternalStorageDirectory(),
"cube.awd"));
parser.parse();
parser.setAlwaysUseContainer(false);
final BaseObject3D obj = parser.getParsedObject();
Author
Ian Thomas (toxicbakery@gmail.com)
Author
Jared Woolston (jwoolston@tenkiv.com)
See Also
<a href="http://awaytools.com/">Away Tools Homepage</a> <p><a href="https://github.com/awaytools/awd-sdk/blob/master/docs/AWD_format_specification2_1_Alpha.pdf">Official<a href="https://github.com/awaytools/AwayBuilder/blob/master/awaybuilder-core/src/awaybuilder/utils/encoders/AWDEncoder.as">Official