mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 13:20:47 +00:00
Update set_multi.ps1
update test to reflect recent changes to wrapper
This commit is contained in:
parent
cbfd7a30f7
commit
b02f6891d9
@ -4,23 +4,31 @@ try {
|
|||||||
$vmr = Get-RemotePotato
|
$vmr = Get-RemotePotato
|
||||||
|
|
||||||
$hash = @{
|
$hash = @{
|
||||||
"Strip[0].Mute" = $true
|
strip_0 = @{mute = $true; mono = $true};
|
||||||
"Strip[1].Mute" = $true
|
strip_1 = @{mute = $true; mono = $true};
|
||||||
"Strip[2].Mute" = $false
|
strip_2 = @{mute = $true; mono = $true};
|
||||||
"Strip[0].Mono" = $true
|
bus_0 = @{mute = $true; mono = $true};
|
||||||
"Strip[1].Mono" = $false
|
bus_1 = @{mute = $true; mono = $true};
|
||||||
"Strip[2].Mono" = $true
|
bus_2 = @{mute = $true; mono = $true};
|
||||||
|
|
||||||
|
mb_0 = @{state = $true};
|
||||||
|
mb_1 = @{stateonly = $true};
|
||||||
|
mb_2 = @{trigger = $true}
|
||||||
}
|
}
|
||||||
|
|
||||||
$vmr.Set_Multi($hash)
|
$vmr.Set_Multi($hash)
|
||||||
|
|
||||||
$hash = @{
|
$hash = @{
|
||||||
"Strip[0].Mute" = $false
|
strip_0 = @{mute = $false; mono = $false};
|
||||||
"Strip[1].Mute" = $false
|
strip_1 = @{mute = $false; mono = $false};
|
||||||
"Strip[2].Mute" = $false
|
strip_2 = @{mute = $false; mono = $false};
|
||||||
"Strip[0].Mono" = $true
|
bus_0 = @{mute = $false; mono = $false};
|
||||||
"Strip[1].Mono" = $true
|
bus_1 = @{mute = $false; mono = $false};
|
||||||
"Strip[2].Mono" = $false
|
bus_2 = @{mute = $false; mono = $false};
|
||||||
|
|
||||||
|
mb_0 = @{state = $false};
|
||||||
|
mb_1 = @{stateonly = $false};
|
||||||
|
mb_2 = @{trigger = $false}
|
||||||
}
|
}
|
||||||
|
|
||||||
$vmr.Set_Multi($hash)
|
$vmr.Set_Multi($hash)
|
||||||
|
Loading…
Reference in New Issue
Block a user