mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2026-04-18 13:33:31 +00:00
xy and fx parameters added to strip/bus classes.
GetType, GetVersion, SendText added to Remote class. Console output now written to Debug stream. ToString() method overriden for higher classes. formatter run through all files.
This commit is contained in:
@@ -18,23 +18,35 @@ class Remote {
|
||||
}
|
||||
|
||||
[void] Setup() {
|
||||
if (Setup_DLL) {
|
||||
Login -KIND $this.kind.name
|
||||
$this.profiles = Get_Profiles($this.kind.name)
|
||||
$this.strip = Make_Strips($this)
|
||||
$this.bus = Make_Buses($this)
|
||||
$this.button = Make_Buttons
|
||||
$this.vban = Make_Vban($this)
|
||||
$this.command = Make_Command
|
||||
$this.recorder = Make_Recorder($this)
|
||||
if (!(Setup_DLL)) {
|
||||
Exit
|
||||
}
|
||||
else { Exit }
|
||||
Login -KIND $this.kind.name
|
||||
$this.profiles = Get_Profiles($this.kind.name)
|
||||
$this.strip = Make_Strips($this)
|
||||
$this.bus = Make_Buses($this)
|
||||
$this.button = Make_Buttons
|
||||
$this.vban = Make_Vban($this)
|
||||
$this.command = Make_Command
|
||||
$this.recorder = Make_Recorder($this)
|
||||
}
|
||||
|
||||
[string] ToString() {
|
||||
return "Voicemeeter " + $this.kind.name.substring(0,1).toupper() + $this.kind.name.substring(1)
|
||||
}
|
||||
|
||||
[void] Logout() {
|
||||
Logout
|
||||
}
|
||||
|
||||
[void] GetType() {
|
||||
VmType
|
||||
}
|
||||
|
||||
[String] GetVersion() {
|
||||
return Version
|
||||
}
|
||||
|
||||
[void] Set_Profile([String]$config) {
|
||||
Set_Profile -DATA $this.profiles -CONF $config
|
||||
}
|
||||
@@ -55,6 +67,10 @@ class Remote {
|
||||
Param_Set_Multi -HASH $hash
|
||||
}
|
||||
|
||||
[void] SendText([String]$script) {
|
||||
Set_By_Script -SCRIPT $script
|
||||
}
|
||||
|
||||
[void] PDirty() { P_Dirty }
|
||||
|
||||
[void] MDirty() { M_Dirty }
|
||||
|
||||
Reference in New Issue
Block a user