Merge pull request #82664 from hackerzhuli/master
Fixed an error in `Vector3.BezierDerivative` in mono module
This commit is contained in:
commit
6bebd9c961
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ namespace Godot
|
|||
return new Vector3(
|
||||
Mathf.BezierDerivative(X, control1.X, control2.X, end.X, t),
|
||||
Mathf.BezierDerivative(Y, control1.Y, control2.Y, end.Y, t),
|
||||
Mathf.BezierDerivative(Z, control1.Z, control2.Z, end.Y, t)
|
||||
Mathf.BezierDerivative(Z, control1.Z, control2.Z, end.Z, t)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue