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
ファイル: HITInterpreter.cs プロジェクト: RHY3756547/FreeSO
 /// <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
 }