setId() public method

sets the id for the Tween. Multiple Tweens can have the same id and you can retrieve them with the Go class
public setId ( int id ) : GoTweenConfig
id int
return GoTweenConfig
Esempio n. 1
0
 static public int setId(IntPtr l)
 {
     try {
         GoTweenConfig self = (GoTweenConfig)checkSelf(l);
         System.Int32  a1;
         checkType(l, 2, out a1);
         var ret = self.setId(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }