onIterationEnd() 공개 메소드

sets the onIterationEnd handler for the Tween
public onIterationEnd ( Action onIterationEnd ) : GoTweenConfig,
onIterationEnd Action
리턴 GoTweenConfig,
예제 #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));
     }
 }