FairyGUI.PlayState.Rewind C# (CSharp) Method

Rewind() public method

public Rewind ( ) : void
return void
        public void Rewind()
        {
            _curFrame = 0;
            _curFrameDelay = 0;
            reversed = false;
            reachEnding = false;
        }

Usage Example

 static public int Rewind(IntPtr l)
 {
     try {
         FairyGUI.PlayState self = (FairyGUI.PlayState)checkSelf(l);
         self.Rewind();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.PlayState::Rewind