glTF 2.0: Set camera "look at" to (0.0, 0.0, -1.0).
parent
89a62edb9a
commit
4235765856
|
@ -499,6 +499,9 @@ void glTF2Importer::ImportCameras(glTF2::Asset& r)
|
||||||
|
|
||||||
aiCamera* aicam = mScene->mCameras[i] = new aiCamera();
|
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) {
|
if (cam.type == Camera::Perspective) {
|
||||||
|
|
||||||
aicam->mAspect = cam.cameraProperties.perspective.aspectRatio;
|
aicam->mAspect = cam.cameraProperties.perspective.aspectRatio;
|
||||||
|
|
Loading…
Reference in New Issue