MumbleSetAudioInputIntent
DocsMumbleSetAudioInputIntent(intentHash)Description
Use this native to disable noise suppression and high pass filters.
The possible intents for this are as follows (backticks are used to represent hashes):
| Index | Description | |-|-| | \`speech\` | Default intent | | \`music\` | Disable noise suppression and high pass filter |
Parameters
| Name | Type | Description |
|---|---|---|
intentHash | Hash | The intent hash. |
Returns
voidThis native does not return a value.
Examples
Official
-- disable noise suppression and high pass filter
MumbleSetAudioInputIntent(`music`)
-- set the default intent (enable noise suppression and high pass filter)
MumbleSetAudioInputIntent(`speech`)