SetSourceVisibility
Control the visibility of a source within a specific scene by setting it to visible or hidden. Integrates with OBS to automate streaming production tasks.
Instructions
Sets the visibility of a source in a specific scene.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| params | Yes | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "params": {
      "additionalProperties": false,
      "properties": {
        "scene": {
          "description": "Name of the scene containing the source.",
          "type": "string"
        },
        "source": {
          "description": "Name of the source.",
          "type": "string"
        },
        "visible": {
          "description": "True to make visible, false to hide.",
          "type": "boolean"
        }
      },
      "required": [
        "scene",
        "source",
        "visible"
      ],
      "type": "object"
    }
  },
  "required": [
    "params"
  ],
  "type": "object"
}