allTweenProperties() public abstract méthode

returns a list of all the TweenProperties contained in the tween and all its children (if it is a TweenChain or a TweenFlow) technically, this should be marked as internal
public abstract allTweenProperties ( ) : List
Résultat List
 static public int allTweenProperties(IntPtr l)
 {
     try {
         AbstractGoTween self = (AbstractGoTween)checkSelf(l);
         var             ret  = self.allTweenProperties();
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }