removeTweenProperty() 공개 추상적인 메소드

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,
리턴 bool
예제 #1
0
 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));
     }
 }