On 14 May 2009, at 12:50, Emmanuele Bassi wrote:
  if (CLUTTER_IS_ANIMATION (priv->show_temp)) {
    show_time = clutter_animation_get_timeline (priv->show_temp);
    g_signal_connect (show_time, "new-frame",
                      G_CALLBACK (on_move_timeline_new_frame), view);
  }
}

there is not much point use the ::new-frame signal to animate something else. if you need to do that then you're probably much better off using a Behaviour in the first place -- because it means the animation you are
writing is not of the "fire and forget" type.


Just reading over what on_move_timeline_new_frame trying to do and yes, I'll need to use a Behavior.

--
Glen Gray <[email protected]>         Digital Depot, Thomas Street
Software Engineering Manager                        Dublin 8, Ireland
Lincor Solutions Ltd.                          Ph: +353 (0) 1 4893682

--
To unsubscribe send a mail to [email protected]

Reply via email to