Patch class with:
- Patch.asio[i]
- Patch.OutA2[i]-OutA5[i]
- Patch.composite[i]
- Patch.insert[i]
- Patch.postFaderComposite
- Patch.postFxInsert
This commit is contained in:
pblivingston
2025-11-25 20:38:57 -05:00
parent c086f58ade
commit 3a5c7286f6
2 changed files with 56 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
. $PSScriptRoot\vban.ps1
. $PSScriptRoot\command.ps1
. $PSScriptRoot\recorder.ps1
. $PSScriptRoot\patch.ps1
. $PSScriptRoot\profiles.ps1
class Remote {
@@ -79,6 +80,7 @@ class RemoteBasic : Remote {
[System.Collections.ArrayList]$button
[PSCustomObject]$vban
[Object]$command
[Object]$patch
RemoteBasic () : base ('basic') {
$this.strip = Make_Strips($this)
@@ -86,6 +88,7 @@ class RemoteBasic : Remote {
$this.button = Make_Buttons
$this.vban = Make_Vban($this)
$this.command = Make_Command($this)
$this.patch = Make_Patch($this)
}
}
@@ -95,6 +98,7 @@ class RemoteBanana : Remote {
[System.Collections.ArrayList]$button
[PSCustomObject]$vban
[Object]$command
[Object]$patch
[Object]$recorder
RemoteBanana () : base ('banana') {
@@ -103,6 +107,7 @@ class RemoteBanana : Remote {
$this.button = Make_Buttons
$this.vban = Make_Vban($this)
$this.command = Make_Command($this)
$this.patch = Make_Patch($this)
$this.recorder = Make_Recorder($this)
}
}
@@ -113,6 +118,7 @@ class RemotePotato : Remote {
[System.Collections.ArrayList]$button
[PSCustomObject]$vban
[Object]$command
[Object]$patch
[Object]$recorder
RemotePotato () : base ('potato') {
@@ -121,6 +127,7 @@ class RemotePotato : Remote {
$this.button = Make_Buttons
$this.vban = Make_Vban($this)
$this.command = Make_Command($this)
$this.patch = Make_Patch($this)
$this.recorder = Make_Recorder($this)
}
}