Let's see if I have this straight..... ClutterActor *a; ClutterActor *b;
ClutterTimeline *TL; ClutterEffectTemplate *TMPL; create new actor (a); create new actor (b); TL = clutter timeline new for duration(100000); TMPL = clutter effect template new (TL, alpha ramp); TL = clutter effect fade (TMPL, a) TL = clutter effect fade (TMPL, b) All set up. Now mid-way through this effect I want to start it again. So would I just (or do I need to return to separate TL's above???) clutter timeline stop (TL); clutter actor set opacity (a,255) clutter actor set opacity (b,255) TL = clutter effect fade (TMPL, a) TL = clutter effect fade (TMPL, b) On Fri, Jul 25, 2008 at 10:13 AM, Matthew Allum <[EMAIL PROTECTED]> wrote: > On Fri, 2008-07-25 at 09:48 +1000, Saul Lethbridge wrote: > > Hi, > > > > I've setup a template and have applied it along with effects to an > > actor. However, in some situations I need to be able to stop it > > (template/timeline) mid execution on a particular actor. How do I > > accomplish this? > > > > Effects return there timeline, you can manipulate that. > > == Matthew > >
