Merge pull request #69427 from TokageItLab/remove-wrong-method-root-pos

Remove unneeded calc in root motion
This commit is contained in:
Rémi Verschelde 2022-12-01 18:11:07 +01:00
commit a7fcfacaa5
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -1630,7 +1630,7 @@ void AnimationTree::_process_graph(double p_delta) {
TrackCacheTransform *t = static_cast<TrackCacheTransform *>(track);
if (t->root_motion) {
root_motion_position = root_motion_rotation.xform_inv(t->loc);
root_motion_position = t->loc;
root_motion_rotation = t->rot;
root_motion_scale = t->scale - Vector3(1, 1, 1);