diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-02-12 23:18:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-12 23:18:38 +0100 |
commit | 458bd83dfc95d8efbcf4f860d5bc10fa19b5164e (patch) | |
tree | 86dfd3d06905e9bc68ac9bfca4a40a2b12cfb155 /scene/animation/tween.cpp | |
parent | 5ce18cbdb9aa1e48e091376afeba4ca67408af06 (diff) | |
parent | 9123e916346ee1b08adebdb9933884519669d8b5 (diff) |
Merge pull request #7747 from sanikoyes/Pr-fix-tween-transform2d
Fix tween Transform2D typo
Diffstat (limited to 'scene/animation/tween.cpp')
-rw-r--r-- | scene/animation/tween.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp index 0916119db3..bd126beef4 100644 --- a/scene/animation/tween.cpp +++ b/scene/animation/tween.cpp @@ -405,9 +405,9 @@ Variant Tween::_run_equation(InterpolateData& p_data) { case Variant::TRANSFORM2D: { - Basis i = initial_val; - Basis d = delta_val; - Basis r; + Transform2D i = initial_val; + Transform2D d = delta_val; + Transform2D r; APPLY_EQUATION(elements[0][0]); APPLY_EQUATION(elements[0][1]); |