From: Mikko Rasa Date: Sat, 8 Jun 2019 11:26:52 +0000 (+0300) Subject: Fix the keyword of the uniform scaling statement in Transform loader X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=13cf58be0e455227e8e5ae418b276a11c7873869 Fix the keyword of the uniform scaling statement in Transform loader --- diff --git a/source/transform.cpp b/source/transform.cpp index 4b67bf91..ea5839fb 100644 --- a/source/transform.cpp +++ b/source/transform.cpp @@ -69,7 +69,7 @@ Transform::Loader::Loader(Transform &t): add("position", &Loader::position); add("euler", &Loader::euler); add("rotation", &Loader::rotation); - add("scale_uniform", &Loader::scale_uniform); + add("scale", &Loader::scale_uniform); add("scale", &Loader::scale); }