Fix convertToLH for uv coordinates
Fix Collada export Fix XFile export
This commit is contained in:
@@ -71,13 +71,14 @@ void GetPostProcessingStepInstanceList(std::vector< BaseProcess* >& out);
|
||||
|
||||
// ------------------------------------------------------------------------------------------------
|
||||
// Exporter worker function prototypes. Should not be necessary to #ifndef them, it's just a prototype
|
||||
void ExportSceneCollada(const char*,IOSystem*, const aiScene*);
|
||||
void ExportSceneXFile(const char*,IOSystem*, const aiScene*);
|
||||
void ExportSceneObj(const char*,IOSystem*, const aiScene*);
|
||||
void ExportSceneSTL(const char*,IOSystem*, const aiScene*);
|
||||
void ExportSceneSTLBinary(const char*,IOSystem*, const aiScene*);
|
||||
void ExportScenePly(const char*,IOSystem*, const aiScene*);
|
||||
void ExportScene3DS(const char*, IOSystem*, const aiScene*) {}
|
||||
// do not use const, because some exporter need to convert the scene temporary
|
||||
void ExportSceneCollada(const char*,IOSystem*, aiScene*);
|
||||
void ExportSceneXFile(const char*,IOSystem*, aiScene*);
|
||||
void ExportSceneObj(const char*,IOSystem*, aiScene*);
|
||||
void ExportSceneSTL(const char*,IOSystem*, aiScene*);
|
||||
void ExportSceneSTLBinary(const char*,IOSystem*, aiScene*);
|
||||
void ExportScenePly(const char*,IOSystem*, aiScene*);
|
||||
void ExportScene3DS(const char*, IOSystem*, aiScene*) {}
|
||||
|
||||
// ------------------------------------------------------------------------------------------------
|
||||
// global array of all export formats which Assimp supports in its current build
|
||||
|
||||
Reference in New Issue
Block a user