mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 21:30:46 +00:00
095a9362cb
fadeto, fadeby added to strip|bus kind maps reworked. bindings/profiles/kinds moved into their own files. changelog/readme updated version bump
33 lines
656 B
PowerShell
33 lines
656 B
PowerShell
$KindMap = @{
|
|
"basic" = @{
|
|
"name" = "basic"
|
|
"p_in" = 2
|
|
"v_in" = 1
|
|
"p_out" = 1
|
|
"v_out" = 1
|
|
"vban_in" = 4
|
|
"vban_out" = 4
|
|
};
|
|
"banana" = @{
|
|
"name" = "banana"
|
|
"p_in" = 3
|
|
"v_in" = 2
|
|
"p_out" = 3
|
|
"v_out" = 2
|
|
"vban_in" = 8
|
|
"vban_out" = 8
|
|
};
|
|
"potato" = @{
|
|
"name" = "potato"
|
|
"p_in" = 5
|
|
"v_in" = 3
|
|
"p_out" = 5
|
|
"v_out" = 3
|
|
"vban_in" = 8
|
|
"vban_out" = 8
|
|
};
|
|
}
|
|
|
|
Function GetKind([string]$kind_id) {
|
|
$KindMap[$kind_id]
|
|
} |