rewind() public method

rewinds the tween to the beginning (or end, depending on isReversed) and pauses playback.
public rewind ( ) : void
return void
 static public int rewind(IntPtr l)
 {
     try {
         AbstractGoTween self = (AbstractGoTween)checkSelf(l);
         System.Boolean  a1;
         checkType(l, 2, out a1);
         self.rewind(a1);
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }