obs-set-scene-item-enabled
Show or hide specific scene items in OBS Studio to manage visibility during live streams or recordings.
Instructions
Show or hide a scene item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enabled | Yes | Whether to show (true) or hide (false) the item | |
sceneItemId | Yes | The ID of the scene item | |
sceneName | Yes | The scene that the source belongs to |
Input Schema (JSON Schema)
{
"properties": {
"enabled": {
"description": "Whether to show (true) or hide (false) the item",
"type": "boolean"
},
"sceneItemId": {
"description": "The ID of the scene item",
"type": "number"
},
"sceneName": {
"description": "The scene that the source belongs to",
"type": "string"
}
},
"required": [
"sceneName",
"sceneItemId",
"enabled"
],
"type": "object"
}