ConvertToLHProcess noew inverts viewing direction

This commit is contained in:
Suhajda Tamás
2023-04-04 19:39:32 +02:00
parent 89ccc89298
commit 23a3e8cf2d
2 changed files with 22 additions and 0 deletions

View File

@@ -58,6 +58,7 @@ struct aiMesh;
struct aiNodeAnim;
struct aiNode;
struct aiMaterial;
struct aiCamera;
namespace Assimp {
@@ -109,6 +110,14 @@ protected:
* @param pAnim The bone animation to transform
*/
void ProcessAnimation( aiNodeAnim* pAnim);
// -------------------------------------------------------------------
/** Converts a single camera to left handed coordinates.
* The camera viewing direction is inverted by reflecting mLookAt
* across mPosition.
* @param pCam The camera to convert
*/
void ProcessCamera( aiCamera* pCam);
};