mirror of
https://github.com/godotengine/godot.git
synced 2025-04-13 01:00:35 +08:00
Remove unneeded calc in root motion
This commit is contained in:
parent
0ff8742919
commit
c1a29f5ef4
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user