Fix space conversion issue
This commit is contained in:
committed by
GitHub
parent
96589557b3
commit
0498f1488e
@@ -127,7 +127,7 @@ void AnimatedModel::GetCurrentPose(Array<Matrix>& nodesTransformation, bool worl
|
||||
Matrix world;
|
||||
_transform.GetWorld(world);
|
||||
for (auto& m : nodesTransformation)
|
||||
m = m * world;
|
||||
m = world * m;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user