You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In OBS I use collections to create a portrait plus camera to use as frame webcam with webcam inside, and i want to be able to toggle the visibility of that collection on macro deck, actually this is possible editing the json, and replacing the "Source" name for the "Collection" name, and works perfect, but maybe the Plugin can offer the option to show "Collections" or "Sources" to allow the user to toggle collections
For example I use the MouseCam collection where i put all the decorations for my webcam, to handle with only one click, showing/hidding the collection, as i said before, this can be handled by the Plugin, but editing the JSON, bcs the list of sources doesnt show collections, maybe can be added a pair of radio buttons to choose between O Sources O Collections, and then list the Sources or Collections to be selected
In my case I replace the name here:
Before:
.
.
.
"Actions": [
{
"$type": "SuchByte.OBSWebSocketPlugin.Actions.SourceVisibilityAction, OBS-WebSocket Plugin",
"Name": "Set OBS source visibility",
"Description": "Hide/show/toggle scene source visibility",
"CanConfigure": true,
"Configuration": "{\r\n "SceneName": "Iniciando Stream",\r\n "SourceName": "Webcam",\r\n "Method": 2,\r\n "ConnectionName": null,\r\n "Version": 1,\r\n "TargetVersion": 1\r\n}",
"ConfigurationSummary": "Toggle Iniciando Stream/Webcam"
}
.
.
.
In OBS I use collections to create a portrait plus camera to use as frame webcam with webcam inside, and i want to be able to toggle the visibility of that collection on macro deck, actually this is possible editing the json, and replacing the "Source" name for the "Collection" name, and works perfect, but maybe the Plugin can offer the option to show "Collections" or "Sources" to allow the user to toggle collections
For example I use the MouseCam collection where i put all the decorations for my webcam, to handle with only one click, showing/hidding the collection, as i said before, this can be handled by the Plugin, but editing the JSON, bcs the list of sources doesnt show collections, maybe can be added a pair of radio buttons to choose between O Sources O Collections, and then list the Sources or Collections to be selected
In my case I replace the name here:
Before:
.
.
.
"Actions": [
{
"$type": "SuchByte.OBSWebSocketPlugin.Actions.SourceVisibilityAction, OBS-WebSocket Plugin",
"Name": "Set OBS source visibility",
"Description": "Hide/show/toggle scene source visibility",
"CanConfigure": true,
"Configuration": "{\r\n "SceneName": "Iniciando Stream",\r\n "SourceName": "Webcam",\r\n "Method": 2,\r\n "ConnectionName": null,\r\n "Version": 1,\r\n "TargetVersion": 1\r\n}",
"ConfigurationSummary": "Toggle Iniciando Stream/Webcam"
}
.
.
.
After:
.
.
.
"Actions": [
{
"$type": "SuchByte.OBSWebSocketPlugin.Actions.SourceVisibilityAction, OBS-WebSocket Plugin",
"Name": "Set OBS source visibility",
"Description": "Hide/show/toggle scene source visibility",
"CanConfigure": true,
"Configuration": "{\r\n "SceneName": "Iniciando Stream",\r\n "SourceName": "MouseCam",\r\n "Method": 2,\r\n "ConnectionName": null,\r\n "Version": 1,\r\n "TargetVersion": 1\r\n}",
"ConfigurationSummary": "Toggle Iniciando Stream/Webcam"
}
.
.
.
sorry for my bad english
The text was updated successfully, but these errors were encountered: