mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2026-04-18 13:33:31 +00:00
gainlayer, busmodes + mc,k added
gainlayers and busmodes added. mc, k added to virtual strips
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
class Strip {
|
||||
[Int]$id
|
||||
|
||||
# Constructor
|
||||
Strip ([Int]$id)
|
||||
{
|
||||
$this.id = $id
|
||||
@@ -14,6 +13,7 @@ class Strip {
|
||||
AddStringMembers -PARAMS @('label')
|
||||
|
||||
AddChannelMembers
|
||||
AddGainlayerMembers
|
||||
}
|
||||
|
||||
[Single] Getter($cmd) {
|
||||
@@ -59,6 +59,8 @@ class PhysicalStrip : Strip {
|
||||
|
||||
class VirtualStrip : Strip {
|
||||
VirtualStrip ([Int]$id) : base ($id) {
|
||||
AddBoolMembers -PARAMS @('mc')
|
||||
AddIntMembers -PARAMS @('k')
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user