diff --git a/clutter/clutter-actor.c b/clutter/clutter-actor.c index d1e457c02..2cde2b036 100644 --- a/clutter/clutter-actor.c +++ b/clutter/clutter-actor.c @@ -224,7 +224,8 @@ * The implicit animation model of Clutter assumes that all the * changes in an actor state should be gradual and asynchronous; Clutter * will automatically transition an actor's property change between the - * current state and the desired one without manual intervention. + * current state and the desired one without manual intervention, if the + * property is defined to be animatable in its documentation. * By default, in the 1.0 API series, the transition happens with * a duration of zero milliseconds, and the implicit animation is an * opt in feature to retain backwards compatibility. In order to enable @@ -302,6 +303,7 @@ * of an actor between fully opaque and fully transparent, and back, over * a span of 3 seconds. The animation does not begin until it is added to * the actor. + * The explicit animation API applies to all #GObject properties. * The explicit animation API should also be used when using custom * animatable properties for #ClutterAction, #ClutterConstraint, and * #ClutterEffect instances associated to an actor; see the section on