gainlayer, busmodes + mc,k added

gainlayers and busmodes added.

mc, k added to virtual strips
This commit is contained in:
onyx-and-iris
2022-03-08 22:55:11 +00:00
parent cea6d500dd
commit 15bec82ec4
3 changed files with 51 additions and 5 deletions

View File

@@ -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')
}
}