Unduck() public method

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