Tweeners: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>D4rk
No edit summary
>D4rk
No edit summary
Line 34: Line 34:


==Elastic Tweener==
==Elastic Tweener==
[[Image:tween_elastic_out.png|thumb|400px|left|Elastic Tweener Easing Out]]
[[Image:anim_elastic_out.gif|none|frame|Elastic Easing Out Animation]]
<br style="clear:both" />
[[Image:tween_elastic_inout.png|400px|thumb|left|Elastic Tweener Easing InOut]]
[[Image:anim_elastic_inout.gif|none|frame|Elastic Easing InOut Animation]]
<br style="clear:both" />
[[Image:tween_elastic_in.png|400px|thumb|left|Elastic Tweener Easing In]]
[[Image:tween_elastic_in.png|400px|thumb|left|Elastic Tweener Easing In]]
[[Image:tween_elastic_inout.png|400px|thumb|left|Elastic Tweener Easing InOut]]
[[Image:anim_elastic_in.gif|none|frame|Elastic Easing In Animation]]
[[Image:tween_elastic_out.png|thumb|400px|left|Elastic Tweener Easing Out]]
<br style="clear:both" />
<br style="clear:both" />


==Cubic Tweener==
==Cubic Tweener==
[[Image:tween_cubic_in.png|400px|thumb|left|Cubic Tweener Easing In]]
[[Image:tween_cubic_in.png|400px|thumb|left|Cubic Tweener Easing In]]
[[Image:anim_cubic_in.gif|none|frame|Cubic Easing In Animation]]
<br style="clear:both" />
[[Image:tween_cubic_inout.png|400px|thumb|left|Cubic Tweener Easing InOut]]
[[Image:tween_cubic_inout.png|400px|thumb|left|Cubic Tweener Easing InOut]]
[[Image:anim_cubic_inout.gif|none|frame|Cubic Easing InOut Animation]]
<br style="clear:both" />
[[Image:tween_cubic_out.png|thumb|400px|left|Cubic Tweener Easing Out]]
[[Image:tween_cubic_out.png|thumb|400px|left|Cubic Tweener Easing Out]]
[[Image:anim_cubic_out.gif|none|frame|Cubic Easing Out Animation]]
<br style="clear:both" />
<br style="clear:both" />


==Sine Tweener==
==Sine Tweener==
[[Image:tween_sine_in.png|400px|thumb|left|Sine Tweener Easing In]]
[[Image:tween_sine_in.png|400px|thumb|left|Sine Tweener Easing In]]
[[Image:anim_sine_in.gif|none|frame|Cubic Sine In Animation]]
<br style="clear:both" />
[[Image:tween_sine_inout.png|400px|thumb|left|Sine Tweener Easing InOut]]
[[Image:tween_sine_inout.png|400px|thumb|left|Sine Tweener Easing InOut]]
[[Image:anim_sine_inout.gif|none|frame|Sine Easing InOut Animation]]
<br style="clear:both" />
[[Image:tween_sine_out.png|thumb|400px|left|Sine Tweener Easing Out]]
[[Image:tween_sine_out.png|thumb|400px|left|Sine Tweener Easing Out]]
[[Image:anim_sine_out.gif|none|frame|Sine Easing Out Animation]]
<br style="clear:both" />
<br style="clear:both" />


==Circle Tweener==
==Circle Tweener==
[[Image:tween_circle_in.png|400px|thumb|left|Circle Tweener Easing In]]
[[Image:tween_circle_in.png|400px|thumb|left|Circle Tweener Easing In]]
<br style="clear:both" />
[[Image:tween_circle_inout.png|400px|thumb|left|Circle Tweener Easing InOut]]
[[Image:tween_circle_inout.png|400px|thumb|left|Circle Tweener Easing InOut]]
<br style="clear:both" />
[[Image:tween_circle_out.png|thumb|400px|left|Circle Tweener Easing Out]]
[[Image:tween_circle_out.png|thumb|400px|left|Circle Tweener Easing Out]]
<br style="clear:both" />
<br style="clear:both" />
Line 59: Line 76:
==Back Tweener==
==Back Tweener==
[[Image:tween_back_in.png|400px|thumb|left|Back Tweener Easing In]]
[[Image:tween_back_in.png|400px|thumb|left|Back Tweener Easing In]]
<br style="clear:both" />
[[Image:tween_back_inout.png|400px|thumb|left|Back Tweener Easing InOut]]
[[Image:tween_back_inout.png|400px|thumb|left|Back Tweener Easing InOut]]
<br style="clear:both" />
[[Image:tween_back_out.png|thumb|400px|left|Back Tweener Easing Out]]
[[Image:tween_back_out.png|thumb|400px|left|Back Tweener Easing Out]]
<br style="clear:both" />
<br style="clear:both" />

Revision as of 09:23, 26 July 2007

What is a Tween?

A Tween defines how an animation progresses from its initial value to its final value. The simplest way this can be accomplished is to go straight from start to finish in equal steps. This results in a smooth transition, however it starts and stops abruptly and tends to be a bit unnatural. Unnatural in the sense that, in the real world, you never see a linear transition. In the real world, transitions (movements, deformations, etc) are always accompanied by varying degrees of acceleration and deceleration. Some real world examples that come to mind: the movement of a pendulum, a ball bouncing, our breathing pattern, a bungee jump. Tweens basically try to mathematically recreate some of these transitions and can help add naturalism to animations.

What is Easing?

All tweens (except Linear) support an easing attribute that can be one of "in", "out", or "inout". The Quadratic tweener only supports "in" and "out". The default easing method is "out". Easing is basically the direction of the tween action. Looking at the various graphs below and trying the tweens out will make the concept of easing, easier (hehe, say that ten times in a row) to understand.

Supported Tweens

Currently, XBMC's skin engine supports eight different tweens: "linear", "quadratic", "bounce", "elastic", "cubic", "circle", "sine" and "back". They are set in an animation using the tween attribute.

Linear Tweener

Linear Tweener
Linear Animation


Quadratic Tweener

Quadratic Tweener Easing In
Quadratic Easing In Animation


Quadratic Tweener Easing Out
Quadratic Easing Out Animation


Bounce Tweener

Bounce Tweener Easing Out
Bounce Easing Out Animation


Bounce Tweener Easing InOut
Bounce Easing InOut Animation


Bounce Tweener Easing In
Bounce Easing In Animation


Elastic Tweener

Elastic Tweener Easing Out
Elastic Easing Out Animation


Elastic Tweener Easing InOut
Elastic Easing InOut Animation


Elastic Tweener Easing In
Elastic Easing In Animation


Cubic Tweener

Cubic Tweener Easing In
Cubic Easing In Animation


Cubic Tweener Easing InOut
Cubic Easing InOut Animation


Cubic Tweener Easing Out
Cubic Easing Out Animation


Sine Tweener

Sine Tweener Easing In
Cubic Sine In Animation


Sine Tweener Easing InOut
Sine Easing InOut Animation


Sine Tweener Easing Out
Sine Easing Out Animation


Circle Tweener

Circle Tweener Easing In


Circle Tweener Easing InOut


Circle Tweener Easing Out


Back Tweener

Back Tweener Easing In


Back Tweener Easing InOut


Back Tweener Easing Out