Typo fix on Fbx2Raw.cpp

Thanks @fire for the report. Fixes #128.
This commit is contained in:
Pär Winzell 2018-09-24 20:24:30 -07:00 committed by GitHub
parent f988cb7aa7
commit 52de0d20d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -801,7 +801,7 @@ bool LoadFBXFile(RawModel &raw, const char *fbxFileName, const char *textureExte
FbxAxisSystem::MayaYUp.ConvertScene(pScene);
// FBX's internal unscaled unit is centimetres, and if you choose not to work in that unit,
// you will find scaling transfgrms on all the children of the root node. Those transforms are
// you will find scaling transforms on all the children of the root node. Those transforms are
// superfluous and cause a lot of people a lot of trouble. Luckily we can get rid of them by
// converting to CM here (which just gets rid of the scaling), and then we pre-multiply the
// scale factor into every vertex position (and related attributes) instead.