setTimeScale() public method

sets the timeScale to be used by the Tween
public setTimeScale ( float timeScale ) : GoTweenConfig
timeScale float
return GoTweenConfig
Ejemplo n.º 1
0
 static public int setTimeScale(IntPtr l)
 {
     try {
         GoTweenConfig self = (GoTweenConfig)checkSelf(l);
         System.Int32  a1;
         checkType(l, 2, out a1);
         var ret = self.setTimeScale(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }