fixed init value in root motion rotation
This commit is contained in:
parent
690fefe43e
commit
dd90a34e8a
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user