Skip to content

Commit

Permalink
Added Meld Studio CSharp Methods (#248)
Browse files Browse the repository at this point in the history
* 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
3 people authored Sep 19, 2024
1 parent 69f8028 commit 4780d9e
Show file tree
Hide file tree
Showing 10 changed files with 100 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ parameters:
- `Hidden`: Set the visibility state to hidden
- `Toggle`: Toggle the visibility state between visible and hidden
variables: []
csharpmethods:
- MeldStudioShowLayerByName
- MeldStudioHideLayerByName
---
2 changes: 2 additions & 0 deletions streamerbot/3.api/1.sub-actions/meld-studio/show-scene.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ parameters:
- name: MeldStudioConnection
- name: MeldStudioScene
variables: []
csharpMethods:
- MeldStudioShowScene
---
9 changes: 9 additions & 0 deletions streamerbot/3.api/3.csharp/_methods/meld/MeldStudioConnect.md
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
---
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
---
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
---
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
---
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
---
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 streamerbot/3.api/3.csharp/_methods/meld/MeldStudioShowScene.md
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
---
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
---

0 comments on commit 4780d9e

Please sign in to comment.