addTweenProperty() public method

adds the tween property if it passes validation and initializes the property
public addTweenProperty ( AbstractTweenProperty, tweenProp ) : void
tweenProp AbstractTweenProperty,
return void
Esempio n. 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));
     }
 }