mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2026-04-18 13:33:31 +00:00
general updates, added fadeto/fadeby
fadeto, fadeby added to strip|bus kind maps reworked. bindings/profiles/kinds moved into their own files. changelog/readme updated version bump
This commit is contained in:
33
lib/kinds.ps1
Normal file
33
lib/kinds.ps1
Normal file
@@ -0,0 +1,33 @@
|
||||
$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]
|
||||
}
|
||||
Reference in New Issue
Block a user