-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Meld Studio CSharp Methods (#248)
* Testing to verify moving parameters to YAML works * move all parameters to YAML on all OBS Sub-Actions * added Credits page * Updated epoccam stuff and thangs * Moved OBS trigger Parameters to Front Matter * Add OBS Events parameters to triggers * Update credits.md * Catching up on beta notes * Added Meld Studio CSharp methods --------- Co-authored-by: Whipstickgostop <8366326+Whipstickgostop@users.noreply.github.com> Co-authored-by: Mustached_Maniac <mustached.maniacttv#gmail.com> Co-authored-by: pwnyy <hubertytom@hotmail.com>
- Loading branch information
1 parent
69f8028
commit 4780d9e
Showing
10 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
streamerbot/3.api/3.csharp/_methods/meld/MeldStudioConnect.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
description: Connects a configured Meld Studio instance | ||
parameters: | ||
- name: connectionIdx | ||
type: number | ||
value: -1 | ||
description: Enter the connection index number (`-1` is a fallback for the `Default` connection) | ||
version: 0.2.5 | ||
--- |
9 changes: 9 additions & 0 deletions
9
streamerbot/3.api/3.csharp/_methods/meld/MeldStudioDisconnect.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
description: Disconnects a configured Meld Studio instance | ||
parameters: | ||
- name: connectionIdx | ||
type: number | ||
value: -1 | ||
description: Enter the connection index number (`-1` is a fallback for the `Default` connection) | ||
version: 0.2.5 | ||
--- |
9 changes: 9 additions & 0 deletions
9
streamerbot/3.api/3.csharp/_methods/meld/MeldStudioGetConnectionByName.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
description: Gets the name of the currently connected instance of Meld Studio | ||
parameters: | ||
- name: name | ||
type: string | ||
value: '"Meld Studio Main"' | ||
description: Enter the connection name exactly as it appears in Streamer.bot | ||
version: 0.2.5 | ||
--- |
17 changes: 17 additions & 0 deletions
17
streamerbot/3.api/3.csharp/_methods/meld/MeldStudioHideLayerByName.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
description: Hides the selected Meld Studio Layer by name | ||
parameters: | ||
- name: sceneName | ||
type: string | ||
value: Gaming | ||
description: Enter the Scene Name | ||
- name: layerName | ||
type: string | ||
value: Alerts | ||
description: Enter the Layer Name | ||
- name: connectionIdx | ||
type: number | ||
value: -1 | ||
description: Enter the connection index number (`-1` is a fallback for the `Default` connection) | ||
version: 0.2.5 | ||
--- |
9 changes: 9 additions & 0 deletions
9
streamerbot/3.api/3.csharp/_methods/meld/MeldStudioIsConnected.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
description: Checks if a configured Meld Studio instance is connected | ||
parameters: | ||
- name: connectionIdx | ||
type: number | ||
value: -1 | ||
description: Enter the connection index number (`-1` is a fallback for the `Default` connection) | ||
version: 0.2.5 | ||
--- |
17 changes: 17 additions & 0 deletions
17
streamerbot/3.api/3.csharp/_methods/meld/MeldStudioShowLayerByName.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
description: Shows the selected Meld Studio Layer by name | ||
parameters: | ||
- name: sceneName | ||
type: string | ||
value: Gaming | ||
description: Enter the Scene Name | ||
- name: layerName | ||
type: string | ||
value: Alerts | ||
description: Enter the Layer Name | ||
- name: connectionIdx | ||
type: number | ||
value: -1 | ||
description: Enter the connection index number (`-1` is a fallback for the `Default` connection) | ||
version: 0.2.5 | ||
--- |
12 changes: 12 additions & 0 deletions
12
streamerbot/3.api/3.csharp/_methods/meld/MeldStudioShowScene.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
description: Shows the selected Meld Studio Scene by ID | ||
parameters: | ||
- name: sceneId | ||
type: string | ||
description: Enter the Scene Id | ||
- name: connectionIdx | ||
type: number | ||
value: -1 | ||
description: Enter the connection index number (`-1` is a fallback for the `Default` connection) | ||
version: 0.2.5 | ||
--- |
13 changes: 13 additions & 0 deletions
13
streamerbot/3.api/3.csharp/_methods/meld/MeldStudioShowSceneByName.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
description: Shows the selected Meld Studio Scene by name | ||
parameters: | ||
- name: sceneName | ||
type: string | ||
value: Gaming | ||
description: Enter the Scene Name | ||
- name: connectionIdx | ||
type: number | ||
value: -1 | ||
description: Enter the connection index number (`-1` is a fallback for the `Default` connection) | ||
version: 0.2.5 | ||
--- |