Added Wavefront OBJ format exporter

Exporter written by Apelsin:
https://github.com/Apelsin

TODO: Hookup avatar export
This commit is contained in:
Latif Khalifa
2013-07-09 22:04:27 +02:00
parent 62f03bc489
commit 8e503f2596
10 changed files with 650 additions and 7 deletions

View File

@@ -248,6 +248,11 @@ protected:
polymesh_map_t mPolyMeshes;
avatar_joint_list_t mMeshLOD;
// <edit>
public:
const virtual avatar_joint_list_t& getMeshLOD() const { return mMeshLOD; }
// </edit>
/** Meshes
** **
*******************************************************************************/

View File

@@ -131,6 +131,10 @@ public:
void setIsTransparent(BOOL is_transparent) { mIsTransparent = is_transparent; }
// <edit>
public:
LLFace* getFace() { return mFace; }
// </edit>
private:
// Allocate skin data
BOOL allocateSkinData( U32 numSkinJoints );