From 9123e916346ee1b08adebdb9933884519669d8b5 Mon Sep 17 00:00:00 2001 From: sanikoyes Date: Tue, 7 Feb 2017 15:45:49 +0800 Subject: [PATCH] Fix tween Transform2D typo --- scene/animation/tween.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp index 0916119db31..bd126beef4c 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]);