From c1c5defbdabc83c915ce6586b83b224c53dc2c98 Mon Sep 17 00:00:00 2001 From: Victor Cebollada Date: Tue, 7 Apr 2015 15:53:15 +0100 Subject: [PATCH] Replace a MoveBy by an AnimateBy. Change-Id: I399401a09e722fd85a026ffc2189e6bd090147f9 Signed-off-by: Victor Cebollada --- examples/text-label-emojis/text-label-emojis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/text-label-emojis/text-label-emojis.cpp b/examples/text-label-emojis/text-label-emojis.cpp index 1cdff6cc..af333760 100644 --- a/examples/text-label-emojis/text-label-emojis.cpp +++ b/examples/text-label-emojis/text-label-emojis.cpp @@ -99,7 +99,7 @@ public: { if( mAnimation ) { - mAnimation.MoveBy( mTableView, Vector3( 0.f, localPoint - mLastPoint, 0.f ), AlphaFunctions::Linear ); + mAnimation.AnimateBy( Property(mTableView, Actor::Property::POSITION), Vector3( 0.f, localPoint - mLastPoint, 0.f ), AlphaFunctions::Linear ); mAnimation.Play(); mLastPoint = localPoint; } -- 2.34.1