update() 공개 메소드

tick method. if it returns true it indicates the tween is complete
public update ( float deltaTime ) : bool
deltaTime float
리턴 bool
예제 #1
0
 static public int update(IntPtr l)
 {
     try {
         GoTween       self = (GoTween)checkSelf(l);
         System.Single a1;
         checkType(l, 2, out a1);
         var ret = self.update(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }