containsTweenProperty() public abstract méthode

returns true if the tween contains the same type (or propertyName) property in its property list technically, this should be marked as internal
public abstract containsTweenProperty ( AbstractTweenProperty, property ) : bool
property AbstractTweenProperty,
Résultat bool
 static public int containsTweenProperty(IntPtr l)
 {
     try {
         AbstractGoTween       self = (AbstractGoTween)checkSelf(l);
         AbstractTweenProperty a1;
         checkType(l, 2, out a1);
         var ret = self.containsTweenProperty(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }