OBS Scene List
The OBS Scene List data node retrieves a list of all scenes currently configured in OBS Studio. The output is an array of scene names as strings. Use this to dynamically reference scenes in your flow, or to validate that a scene exists before attempting to switch to it.
Outputs
| Name | Type | Description |
|---|---|---|
Scenes | Array<string> | A list of all scene names in OBS |
Example
You want to build a chat command that lets moderators switch scenes by name. Use the OBS Scene List node to get all available scenes, then check whether the requested scene name exists in the list before executing a scene switch effect. This prevents errors from typos or nonexistent scene names.