onIterationEnd() public method

sets the onIterationEnd handler for the Tween
public onIterationEnd ( Action onIterationEnd ) : GoTweenConfig,
onIterationEnd Action
return GoTweenConfig,
Example #1
0
 static public int onIterationEnd(IntPtr l)
 {
     try {
         GoTweenConfig self = (GoTweenConfig)checkSelf(l);
         System.Action <AbstractGoTween> a1;
         LuaDelegation.checkDelegate(l, 2, out a1);
         var ret = self.onIterationEnd(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }