Set camera type accordingly in Camera's init methods (#17809)

This commit is contained in:
André Sousa 2017-05-15 22:17:15 -03:00 коммит произвёл minggo
Родитель 6753c6e98b
Коммит 9ed89680bb
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -236,6 +236,7 @@ bool Camera::initPerspective(float fieldOfView, float aspectRatio, float nearPla
Mat4::createPerspective(_fieldOfView, _aspectRatio, _nearPlane, _farPlane, &_projection);
_viewProjectionDirty = true;
_frustumDirty = true;
_type = Type::PERSPECTIVE;
return true;
}
@ -249,6 +250,7 @@ bool Camera::initOrthographic(float zoomX, float zoomY, float nearPlane, float f
Mat4::createOrthographicOffCenter(0, _zoom[0], 0, _zoom[1], _nearPlane, _farPlane, &_projection);
_viewProjectionDirty = true;
_frustumDirty = true;
_type = Type::ORTHOGRAPHIC;
return true;
}