Unduck() public method

Signals to the VM to unduck all threads that are currently ducked.
public Unduck ( ) : void
return void
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
 }
Ejemplo n.º 2
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
 }