prependDelay() публичный Метод

adds a delay to the front of the flow
public prependDelay ( float delay ) : GoTweenChain,
delay float
Результат GoTweenChain,
Пример #1
0
 static public int prependDelay(IntPtr l)
 {
     try {
         GoTweenChain  self = (GoTweenChain)checkSelf(l);
         System.Single a1;
         checkType(l, 2, out a1);
         var ret = self.prependDelay(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }