X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftransition-effects%2Fcube-transition-wave-effect-impl.cpp;h=818e670ff13b5357cb5d12d68e306e3ab7a27b6a;hp=1b0063ddd2140b9cd7e3ca09dac744c601b82907;hb=7c5cd5665d3b4648fed0a8b0a67522cdb48885cf;hpb=18088175cb55711d4675c6ea25b1b01022886be5 diff --git a/dali-toolkit/internal/transition-effects/cube-transition-wave-effect-impl.cpp b/dali-toolkit/internal/transition-effects/cube-transition-wave-effect-impl.cpp index 1b0063d..818e670 100644 --- a/dali-toolkit/internal/transition-effects/cube-transition-wave-effect-impl.cpp +++ b/dali-toolkit/internal/transition-effects/cube-transition-wave-effect-impl.cpp @@ -98,13 +98,13 @@ void CubeTransitionWaveEffect::OnStartTransition( Vector2 panPosition, Vector2 p float delay = thirdAnimationDuration * CalculateDelay(x*mTileSize.width,y*mTileSize.height); mAnimation.AnimateTo( Property( mBoxes[idx], Actor::Property::ORIENTATION ), Quaternion( Radian( Degree( -angle ) ), Vector3::YAXIS ), - AlphaFunctions::EaseOutSine, TimePeriod( delay, thirdAnimationDuration ) ); + AlphaFunction::EASE_OUT_SINE, TimePeriod( delay, thirdAnimationDuration ) ); mAnimation.AnimateBy( Property( mBoxes[idx], Actor::Property::POSITION ), Vector3( 0.f, 0.f, -mCubeDisplacement ), - AlphaFunctions::Bounce, TimePeriod( delay, thirdAnimationDuration ) ); + AlphaFunction::BOUNCE, TimePeriod( delay, thirdAnimationDuration ) ); mAnimation.AnimateTo( Property( mTiles[anotherIndex][idx], Actor::Property::COLOR ), HALF_BRIGHTNESS, - AlphaFunctions::EaseOut, TimePeriod( delay, thirdAnimationDuration ) ); + AlphaFunction::EASE_OUT, TimePeriod( delay, thirdAnimationDuration ) ); mAnimation.AnimateTo( Property( mTiles[mContainerIndex][idx], Actor::Property::COLOR ), FULL_BRIGHTNESS, - AlphaFunctions::EaseIn, TimePeriod( delay, thirdAnimationDuration ) ); + AlphaFunction::EASE_IN, TimePeriod( delay, thirdAnimationDuration ) ); } }