scalePath() public method

scale through a series of Vector3s
public scalePath ( GoSpline path, bool isRelative = false ) : GoTweenConfig
path GoSpline
isRelative bool
return GoTweenConfig
Example #1
0
 static public int scalePath(IntPtr l)
 {
     try {
         GoTweenConfig self = (GoTweenConfig)checkSelf(l);
         GoSpline      a1;
         checkType(l, 2, out a1);
         System.Boolean a2;
         checkType(l, 3, out a2);
         var ret = self.scalePath(a1, a2);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }