FSO.HIT.HITThread.Unduck C# (CSharp) Method

Unduck() public method

Signals to the VM to unduck all threads that are currently ducked.
public Unduck ( ) : void
return void
        public void Unduck()
        {
            //VM.Unduck();
        }

Usage Example

Ejemplo n.º 1
0
 /// <summary>
 /// Unducks all audio back to the volume before Duck() was called.
 /// </summary>
 public static HITResult Unduck(HITThread thread)
 {
     thread.Unduck();
     return(HITResult.CONTINUE); //quack
 }
All Usage Examples Of FSO.HIT.HITThread::Unduck