removeTweenProperty() public abstract méthode

attempts to remove the tween property returning true if successful technically, this should be marked as internal
public abstract removeTweenProperty ( AbstractTweenProperty, property ) : bool
property AbstractTweenProperty,
Résultat bool
 static public int removeTweenProperty(IntPtr l)
 {
     try {
         AbstractGoTween       self = (AbstractGoTween)checkSelf(l);
         AbstractTweenProperty a1;
         checkType(l, 2, out a1);
         var ret = self.removeTweenProperty(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }