1
0
Fork 0

[tests] Animate the color during easing

The easing modes test should also tweak the color to show the
progress of the animation.
This commit is contained in:
Emmanuele Bassi 2009-03-11 22:12:36 +00:00
parent 2c95b378a5
commit 77579bbc5f

View file

@ -83,13 +83,20 @@ on_button_press (ClutterActor *actor,
{
ClutterAnimation *animation;
ClutterAnimationMode cur_mode;
ClutterColor color = { 0, 0, 0, 255 };
cur_mode = easing_modes[current_mode].mode;
clutter_color_from_hls (&color,
g_random_double_range (0.0, 360.0),
g_random_double_range (0.0, 1.0),
g_random_double_range (0.0, 1.0));
animation =
clutter_actor_animate (rectangle, cur_mode, 2000,
"x", event->x,
"y", event->y,
"color", &color,
NULL);
}