limit, alias members

- limit [int] -> [float]
- moved mono bool member to physicalstrip
- added AddAliasMembers meta function
- mono and karaoke aliases added to virtualstrip

prelim pester tests for potato pass
This commit is contained in:
pblivingston
2025-12-07 02:20:30 -05:00
parent 46584236d4
commit 6d511d8aa6
5 changed files with 53 additions and 17 deletions

View File

@@ -74,6 +74,16 @@ function AddActionMembers () {
}
}
function AddAliasMembers () {
param(
[hashtable]$MAP
)
foreach ($alias in $MAP.Keys) {
$this | Add-Member -MemberType AliasProperty -Name $alias `
-Value $MAP[$alias] -Force
}
}
function AddChannelMembers () {
$num_A = $this.remote.kind.p_out
$num_B = $this.remote.kind.v_out