diff options
| author | Assiduous <61806567+TheMostDiligent@users.noreply.github.com> | 2021-03-18 05:06:50 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-18 05:06:50 +0000 |
| commit | 1de4b5caf9a2f779b2a160c210b425e1c63bb1a9 (patch) | |
| tree | fcac53b85a8f10b5a6a698cdc7c3ccd21f700625 /AssetLoader/src/GLTFLoader.cpp | |
| parent | Updated readme (diff) | |
| parent | Fix misc. typos (diff) | |
| download | DiligentTools-1de4b5caf9a2f779b2a160c210b425e1c63bb1a9.tar.gz DiligentTools-1de4b5caf9a2f779b2a160c210b425e1c63bb1a9.zip | |
Merge pull request #21 from luzpaz/typos
Fix misc. typos
Diffstat (limited to 'AssetLoader/src/GLTFLoader.cpp')
| -rw-r--r-- | AssetLoader/src/GLTFLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AssetLoader/src/GLTFLoader.cpp b/AssetLoader/src/GLTFLoader.cpp index 485def6..ff77f0b 100644 --- a/AssetLoader/src/GLTFLoader.cpp +++ b/AssetLoader/src/GLTFLoader.cpp @@ -220,7 +220,7 @@ void Node::UpdateTransforms() if (pSkin != nullptr) { // Update join matrices - auto InverseTransform = pMesh->Transforms.matrix.Inverse(); // TODO: do not use inverse tranform here + auto InverseTransform = pMesh->Transforms.matrix.Inverse(); // TODO: do not use inverse transform here if (pMesh->Transforms.jointMatrices.size() != pSkin->Joints.size()) pMesh->Transforms.jointMatrices.resize(pSkin->Joints.size()); for (size_t i = 0; i < pSkin->Joints.size(); i++) |
