Emmanuele Bassi
c0adf4582c
[docs] Clarify clutter_actor_animate() behaviour
...
When calling clutter_actor_animate() on an actor that is being
currently animated the default behaviour is to update the duration
of the animation; the easing mode; update all the common properties;
and finally add the new properties.
This:
clutter_actor_animate (actor, 500, CLUTTER_LINEAR,
"width", 100,
"height", 100,
NULL);
clutter_actor_animate (actor, 250, CLUTTER_EASE_IN_CUBIC,
"x", 100,
"y", 100,
"height", 200,
NULL);
Is logically equivalent to:
clutter_actor_animate (actor, 250, CLUTTER_EASE_IN_CUBIC,
"x", 100,
"y", 100,
"width", 100,
"height", 200,
NULL);
The documentation of the function should be slightly more verbose
in describing the default behaviour.
2009-03-10 12:38:02 +00:00
..
2009-03-10 12:38:02 +00:00
2009-03-09 18:53:31 +00:00
2009-02-16 12:46:36 +00:00
2009-03-09 15:42:23 +00:00
2009-03-10 12:38:02 +00:00
2008-10-30 17:04:34 +00:00
2009-03-10 12:38:02 +00:00
2009-03-09 18:53:31 +00:00
2009-03-10 12:16:53 +00:00
2009-03-09 10:45:09 +00:00
2009-02-23 13:00:52 +00:00
2009-02-02 12:07:28 +00:00
2009-02-20 12:09:07 +00:00
2009-01-20 18:47:50 +00:00
2009-01-08 13:18:00 +00:00
2009-01-08 13:18:00 +00:00
2009-03-10 12:38:02 +00:00
2009-01-16 14:37:42 +00:00
2009-02-26 15:32:48 +00:00
2009-02-26 15:32:48 +00:00
2009-01-23 13:08:46 +00:00
2009-01-24 14:32:10 +00:00
2009-01-20 16:42:49 +00:00
2009-02-20 12:09:07 +00:00
2008-12-05 13:13:37 +00:00
2009-02-18 18:30:58 +00:00
2009-01-23 18:41:40 +00:00
2009-02-20 12:09:07 +00:00
2009-01-20 16:42:49 +00:00
2009-01-20 16:20:54 +00:00
2008-12-05 13:13:37 +00:00
2009-02-20 12:09:07 +00:00
2009-01-14 15:03:30 +00:00
2008-12-19 17:48:30 +00:00
2009-01-09 14:26:35 +00:00
2009-02-20 12:09:07 +00:00
2009-02-20 12:09:07 +00:00
2009-01-27 14:24:31 +00:00
2009-03-10 12:38:02 +00:00
2009-03-10 12:38:02 +00:00
2009-02-20 12:09:07 +00:00
2009-03-10 12:38:02 +00:00
2007-08-20 20:16:15 +00:00
2009-02-20 12:09:07 +00:00
2009-02-14 11:38:16 +00:00
2009-01-20 16:20:54 +00:00
2009-01-20 16:20:55 +00:00
2009-02-20 12:09:07 +00:00
2009-02-20 12:09:07 +00:00
2009-01-08 11:15:09 +00:00
2009-02-14 11:31:00 +00:00
2009-02-14 11:31:00 +00:00
2009-02-27 17:59:16 +00:00
2009-01-27 14:43:44 +00:00
2009-01-20 16:42:49 +00:00
2009-02-24 16:22:02 +00:00
2009-02-24 16:22:02 +00:00
2009-02-20 12:09:07 +00:00
2009-02-20 12:09:07 +00:00
2008-12-21 21:52:50 +00:00
2009-02-14 11:38:16 +00:00
2009-01-28 17:20:15 +00:00
2009-02-20 12:09:07 +00:00
2009-03-10 12:38:02 +00:00
2009-02-26 14:57:58 +00:00
2009-02-20 12:09:07 +00:00
2009-02-20 11:47:14 +00:00
2009-03-10 12:38:02 +00:00
2009-02-20 12:09:07 +00:00
2009-02-20 12:09:07 +00:00
2009-01-23 15:16:21 +00:00
2009-02-20 12:09:07 +00:00
2009-02-26 12:49:50 +00:00
2009-02-19 15:44:16 +00:00
2009-02-19 15:00:23 +00:00
2009-02-20 12:09:07 +00:00
2009-01-27 14:43:44 +00:00
2009-01-22 12:11:25 +00:00
2009-01-21 17:35:47 +00:00
2009-01-27 15:18:45 +00:00
2009-03-10 12:38:02 +00:00