addTweenProperty() 공개 메소드

adds the tween property if it passes validation and initializes the property
public addTweenProperty ( AbstractTweenProperty, tweenProp ) : void
tweenProp AbstractTweenProperty,
리턴 void
예제 #1
0
 static public int addTweenProperty(IntPtr l)
 {
     try {
         GoTween self = (GoTween)checkSelf(l);
         AbstractTweenProperty a1;
         checkType(l, 2, out a1);
         self.addTweenProperty(a1);
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }