Merge pull request #1690 from awefers/issue_1689

glTF 2.0: Set camera "look at" to (0.0, 0.0, -1.0).
pull/1692/head^2
Kim Kulling 2018-01-10 20:50:11 +01:00 committed by GitHub
commit de8cc09a09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -499,6 +499,9 @@ void glTF2Importer::ImportCameras(glTF2::Asset& r)
aiCamera* aicam = mScene->mCameras[i] = new aiCamera();
// cameras point in -Z by default, rest is specified in node transform
aicam->mLookAt = aiVector3D(0.f,0.f,-1.f);
if (cam.type == Camera::Perspective) {
aicam->mAspect = cam.cameraProperties.perspective.aspectRatio;