prepend() public method

adds a Tween to the front of the flow
public prepend ( AbstractGoTween, tween ) : GoTweenChain,
tween AbstractGoTween,
return GoTweenChain,
Esempio n. 1
0
 static public int prepend(IntPtr l)
 {
     try {
         GoTweenChain    self = (GoTweenChain)checkSelf(l);
         AbstractGoTween a1;
         checkType(l, 2, out a1);
         var ret = self.prepend(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }