You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-18 14:21:41 +00:00
fixed init value in root motion rotation
This commit is contained in:
@@ -999,7 +999,7 @@ void AnimationTree::_process_graph(double p_delta) {
|
||||
if (t->process_pass != process_pass) {
|
||||
t->process_pass = process_pass;
|
||||
t->loc = Vector3(0, 0, 0);
|
||||
t->rot = Quaternion(0, 0, 0, 0);
|
||||
t->rot = Quaternion(0, 0, 0, 1);
|
||||
t->scale = Vector3(0, 0, 0);
|
||||
}
|
||||
double prev_time = time - delta;
|
||||
@@ -1095,7 +1095,7 @@ void AnimationTree::_process_graph(double p_delta) {
|
||||
if (t->process_pass != process_pass) {
|
||||
t->process_pass = process_pass;
|
||||
t->loc = Vector3(0, 0, 0);
|
||||
t->rot = Quaternion(0, 0, 0, 0);
|
||||
t->rot = Quaternion(0, 0, 0, 1);
|
||||
t->scale = Vector3(0, 0, 0);
|
||||
}
|
||||
double prev_time = time - delta;
|
||||
@@ -1191,7 +1191,7 @@ void AnimationTree::_process_graph(double p_delta) {
|
||||
if (t->process_pass != process_pass) {
|
||||
t->process_pass = process_pass;
|
||||
t->loc = Vector3(0, 0, 0);
|
||||
t->rot = Quaternion(0, 0, 0, 0);
|
||||
t->rot = Quaternion(0, 0, 0, 1);
|
||||
t->scale = Vector3(0, 0, 0);
|
||||
}
|
||||
double prev_time = time - delta;
|
||||
|
||||
Reference in New Issue
Block a user