isValid() 공개 메소드

we are valid if we have a target and at least one TweenProperty
public isValid ( ) : bool
리턴 bool
예제 #1
0
 static public int isValid(IntPtr l)
 {
     try {
         GoTween self = (GoTween)checkSelf(l);
         var     ret  = self.isValid();
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }