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

Duck() public method

Signals the VM to duck all threads with a higher ducking priority than this one.
public Duck ( ) : void
return void
        public void Duck()
        {
            //VM.Duck(this.DuckPriority);
        }

Usage Example

示例#1
0
 /// <summary>
 /// Ducks all audio with priority lower than this.
 /// Imagine all the other sounds getting quieter when the fire music plays.
 /// </summary>
 public static HITResult Duck(HITThread thread)
 {
     thread.Duck();
     return(HITResult.CONTINUE);
 }
All Usage Examples Of FSO.HIT.HITThread::Duck