Fix typo on gltf2 camera parameters
parent
35819340aa
commit
c63263b025
|
@ -934,7 +934,7 @@ inline void Camera::Read(Value& obj, Asset& /*r*/)
|
||||||
{
|
{
|
||||||
type = MemberOrDefault(obj, "type", Camera::Perspective);
|
type = MemberOrDefault(obj, "type", Camera::Perspective);
|
||||||
|
|
||||||
const char* subobjId = (type == Camera::Orthographic) ? "ortographic" : "perspective";
|
const char* subobjId = (type == Camera::Orthographic) ? "orthographic" : "perspective";
|
||||||
|
|
||||||
Value* it = FindObject(obj, subobjId);
|
Value* it = FindObject(obj, subobjId);
|
||||||
if (!it) throw DeadlyImportError("GLTF: Camera missing its parameters");
|
if (!it) throw DeadlyImportError("GLTF: Camera missing its parameters");
|
||||||
|
|
Loading…
Reference in New Issue