A powerful OBS Studio plugin that adds a hierarchical scene tree view dock, enabling efficient scene and folder management with drag-and-drop support.
Note: This is a third‑party plugin and is not affiliated with or endorsed by the OBS Project.
| Platform | Architecture | OBS Version | Status |
|---|---|---|---|
| Windows | x64 | 32.x+ | ✅ Fully Supported |
| Linux | x86_64 | 32.x+ | ✅ Fully Supported |
| macOS | x64 + arm64 (Universal) | 32.x+ | ✅ Fully Supported |
Notes:
- Windows: Pre-built binaries available in releases
- Linux: Requires strict OBS 32.x version matching (libobs 32)
- macOS: Universal binary supports both Intel and Apple Silicon Macs; unsigned (requires Gatekeeper bypass)
-
Hierarchical Scene Organization: Organize scenes into folders for better project structure
-
Drag-and-Drop Support: Easily reorder scenes and folders with intuitive drag-and-drop
-
Scene Management: Add, remove, rename, and manage scenes directly from the tree view
-
Folder Support: Create and organize scenes into logical groups
-
Per-Scene Transitions: Configure custom transitions for individual scenes
-
Scene Collection Support: Automatically saves and restores scene tree structure with scene collections
-
Cross-Platform: Works on Windows, macOS, and Linux
Official builds for Windows, macOS, and Linux are published on the GitHub Releases page:
Each ZIP is packaged with a system-level folder layout so you can unzip directly into your system directories and everything “falls into place.” An INSTALL.txt is included inside each ZIP with step-by-step instructions.
- Windows: unzip into C:\Program Files (includes DLL + PDB + locales)
- macOS: unzip into / (Library/Application Support paths)
- Linux: unzip into / (usr/lib + usr/share paths)
- Windows 10/11 (64-bit)
- OBS Studio 32.0.1+ installed (runtime)
- CMake 3.28+
- Visual Studio 2022 (MSVC, v143) with Desktop development with C++
- Qt 6.8.3 EXACT (provided by the OBS deps pack below)
- Git
- OBS source and dependency pack (SDK paths for headers/libs):
- OBS source:
C:\OBS-SDK\obs-studio-src - OBS deps (Qt 6.8.3 pack):
C:\OBS-SDK\obs-studio-src\.deps\obs-deps-qt6-2025-08-23-x64
- OBS source:
Notes:
- These binaries require OBS Studio 32.0.1+ (built against libobs 32 and Qt 6.8.3). Older OBS releases are not ABI-compatible with this build.
- Qt version must match the OBS runtime’s Qt exactly. For OBS 32.0.1, use Qt 6.8.3.
- Mixing Qt versions (e.g., building against 6.9.x while running OBS with 6.8.3) will prevent the plugin from loading.
For end users, the easiest way to install is with a pre-built release ZIP that contains only the plugin binaries.
- Download the latest release ZIP from this repository's GitHub Releases page.
- The ZIP includes:
obs_scene_tree_view.dllandobs_scene_tree_view.pdb
- The ZIP includes:
- Close OBS Studio if it is running.
- Extract the ZIP to a temporary folder.
- Copy the following files to the OBS 64-bit plugins folder:
obs_scene_tree_view.dllobs_scene_tree_view.pdb- Destination:
C:\Program Files\obs-studio\obs-plugins\64bit\ - Note: Copying into
Program Filesmay require administrator privileges.- Example (PowerShell, run as Administrator):
$dest = "C:\Program Files\obs-studio\obs-plugins\64bit" Copy-Item ".\obs_scene_tree_view.dll" $dest -Force Copy-Item ".\obs_scene_tree_view.pdb" $dest -Force
- Example (PowerShell, run as Administrator):
- Launch OBS Studio and verify the plugin loaded:
- View → Docks → Scene Tree View (check it)
- If it doesn't appear: View → Docks → Reset UI, then re-check the dock
- If OBS was open during the copy, restart OBS to load the new plugin binaries.
After building, install the plugin into the system OBS installation:
- Close OBS Studio
- Copy the built DLL (v0.1.9) to the 64-bit plugins folder:
- From:
d:\Coding\obs-plugins\obs_scene_tree_view\build_qt683\RelWithDebInfo\obs_scene_tree_view.dll - To:
C:\Program Files\obs-studio\obs-plugins\64bit\obs_scene_tree_view.dll
- From:
- Copy locale files (for translated titles/strings):
- From:
d:\Coding\obs-plugins\obs_scene_tree_view\data\locale\ - To:
C:\Program Files\obs-studio\data\obs-plugins\obs_scene_tree_view\locale\ - Example (PowerShell, run as Admin):
robocopy "data\locale" "C:\Program Files\obs-studio\data\obs-plugins\obs_scene_tree_view\locale" /E
- From:
- Launch OBS Studio and enable the dock:
- View → Docks → Scene Tree View (check it)
- If you don’t see it immediately, use View → Docks → Reset UI once, then re-check the dock.
- Download the latest
obs-scene-tree-view-linux-x86_64.zipfrom GitHub Releases - Close OBS Studio completely
- Extract the archive
- As root, copy the contents to system directories:
sudo cp -r usr/lib/obs-plugins/* /usr/lib/obs-plugins/ sudo cp -r usr/share/obs/* /usr/share/obs/
- Start OBS Studio
- Enable the dock: View → Docks → Scene Tree View (Reset UI if needed)
Important Notes:
- This is a system-level install and requires root privileges
- OBS 32.x is required (strict version matching)
- Plugin must be built against the same libobs version as your OBS installation
-
Download the latest
obs-scene-tree-view-macos.zipfrom GitHub Releases -
Close OBS Studio completely
-
Extract the archive
-
Copy the "Library" folder to the root of your disk (/) and allow merge
- Or manually copy to:
/Library/Application Support/obs-studio/plugins/obs_scene_tree_view.plugin/Contents/MacOS/obs_scene_tree_view/Library/Application Support/obs-studio/plugins/obs_scene_tree_view/locale/*.ini
- Or manually copy to:
-
IMPORTANT: Bypass macOS Gatekeeper (plugin is unsigned)
Method 1 (Recommended - Right-Click):
- Right-click the plugin file in Finder
- Select "Open"
- Click "Open" in the security dialog
- The plugin will now work permanently
Method 2 (Terminal - xattr):
xattr -cr "/Library/Application Support/obs-studio/plugins/obs_scene_tree_view.plugin"Method 3 (System Settings):
- Try to launch OBS with the plugin
- Open System Settings → Privacy & Security
- Scroll to "Security" section
- Click "Open Anyway" next to the blocked plugin warning
- Restart OBS Studio
-
Start OBS Studio
-
Enable the dock: View → Docks → Scene Tree View (Reset UI if needed)
Important Notes:
- This is a system-level install and may require administrator privileges
- OBS 32.x is required
- Universal binary (x86_64 + arm64) for Intel and Apple Silicon Macs
- Plugin is NOT code-signed; Gatekeeper bypass is required on first launch
# Paths (adjust if different)
$env:OBS_SRC = "C:\OBS-SDK\obs-studio-src"
$env:OBS_DEPS = "$env:OBS_SRC\.deps\obs-deps-qt6-2025-08-23-x64"
$env:Qt6_DIR = "$env:OBS_DEPS\qt6\lib\cmake\Qt6"
$env:CMAKE_PREFIX_PATH = "$env:OBS_DEPS;$env:OBS_DEPS\qt6;$env:OBS_DEPS\obs-studio;$env:OBS_DEPS\obs-studio\lib\cmake"
# Configure (Visual Studio 2022, x64)
cmake -S . -B build_qt683 -G "Visual Studio 17 2022" -A x64 `
-DQt6_DIR="$env:Qt6_DIR" `
-DCMAKE_PREFIX_PATH="$env:CMAKE_PREFIX_PATH"
# Build (choose one configuration)
cmake --build build_qt683 --config RelWithDebInfo -j 8
cmake --build build_qt683 --config Release -j 8
cmake --build build_qt683 --config Debug -j 8# Set up environment
export OBS_SDK_DIR="/path/to/obs-studio-32-sdk"
# Create build directory
mkdir build
cd build
# Configure for Intel (x86_64)
cmake -S .. -B . -G Ninja \
-DOBS_SDK_DIR="$OBS_SDK_DIR" \
-DCMAKE_OSX_ARCHITECTURES="x86_64"
# OR configure for Apple Silicon (arm64)
cmake -S .. -B . -G Ninja \
-DOBS_SDK_DIR="$OBS_SDK_DIR" \
-DCMAKE_OSX_ARCHITECTURES="arm64"
# OR configure for Universal (both architectures)
cmake -S .. -B . -G Ninja \
-DOBS_SDK_DIR="$OBS_SDK_DIR" \
-DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
# Build
cmake --build . --config Release
# Install (optional)
cmake --install . --config Release# Set up environment
export OBS_SDK_DIR="/path/to/obs-studio-32-sdk"
# Install dependencies
# Arch Linux
sudo pacman -S obs-studio cmake ninja qt6-base
# Ubuntu/Debian
sudo apt-get install obs-studio libobs-dev cmake ninja-build qt6-base-dev
# Fedora
sudo dnf install obs-studio obs-devel cmake ninja-build qt6-base-devel
# Create build directory
mkdir build
cd build
# Configure
cmake -S .. -B . -G Ninja \
-DOBS_SDK_DIR="$OBS_SDK_DIR" \
-DCMAKE_BUILD_TYPE=Release
# Build
cmake --build . --config Release
# Install
sudo cmake --install . --config Release- Open OBS Studio
- Go to Docks menu
- Select Scene Tree View
- The Scene Tree View dock will appear (typically on the left side)
- Right-click in the Scene Tree View → New Scene
- Or use the standard OBS scene creation method
- Right-click in the Scene Tree View → New Folder
- Folders help organize related scenes
-
Drag and Drop: Click and drag scenes to reorder or move them into folders
-
Rename: Right-click a scene/folder → Rename
-
Delete: Right-click a scene/folder → Delete
- Select a scene or folder, then click Move Up or Move Down to move it exactly one position.
- The selection stays on the moved item after the move.
- When the selected item is at the top, Up is disabled; when it is at the bottom, Down is disabled.
- Disabled icons retain their normal color (non-dimmed) to keep the UI visually stable; only enablement changes.
- Click a scene in the tree to select it as the current scene
- Double-click to switch to preview mode (if enabled)
- Right-click a scene → Transition to set a custom transition for that scene
- Delete: Remove selected scene or folder
- F2: Rename selected item
- Drag & Drop: Reorder scenes and folders
Problem: The Scene Tree View dock doesn't appear in the Docks menu.
Solutions:
- Verify the DLL is installed to the system OBS folder (not AppData):
C:\Program Files\obs-studio\obs-plugins\64bit\obs_scene_tree_view.dll- Remove any older copies from
%APPDATA%\obs-studio\plugins\...that could shadow the system plugin.
- In OBS, enable the dock:
- View → Docks → Scene Tree View (check it)
- If missing: View → Docks → Reset UI, then re-check the dock entry.
- Check OBS logs for clues (Help → Log Files):
- Look for lines containing
obs_scene_tree_viewandregistered via.
- Look for lines containing
- Ensure OBS Studio is 32.0.1+ (Help → About OBS Studio).
Problem: CMake cannot find OBS libraries (libobs/obs-frontend-api)
Solutions (Windows):
- Ensure you set these before configuring:
$env:OBS_SRC = "C:\OBS-SDK\obs-studio-src"$env:OBS_DEPS = "$env:OBS_SRC\.deps\obs-deps-qt6-2025-08-23-x64"$env:CMAKE_PREFIX_PATH = "$env:OBS_DEPS;$env:OBS_DEPS\qt6;$env:OBS_DEPS\obs-studio;$env:OBS_DEPS\obs-studio\lib\cmake"
- Re-run CMake configure (see Windows build section).
- If still failing, verify the deps pack exists and contains
lib/cmake/libobsandlib/cmake/obs-frontend-api.
Problem: Qt version mismatch (plugin loads fails or dock missing without clear error)
Solutions:
- OBS 32.0.1 uses Qt 6.8.3. Build the plugin against Qt 6.8.3 exactly (from the obs-deps pack).
- Confirm CMake is using
-DQt6_DIR="C:\OBS-SDK\obs-studio-src\.deps\obs-deps-qt6-2025-08-23-x64\qt6\lib\cmake\Qt6".
Problem: "C++17 or later required" error
Solutions:
- Use Visual Studio 2022 (v143) and CMake 3.28+.
- Ensure your Kit/Generator is "Visual Studio 17 2022" and
-A x64.
Problem: Plugin crashes when adding/removing scenes
Solutions:
- Update OBS Studio to the latest 32.x version
- Check OBS logs for specific error messages
- Try disabling other plugins to isolate the issue
- Report the issue with logs attached
Problem: Scene tree doesn't update when scenes are added externally
Solutions:
- This is expected behavior - refresh by switching scenes
- Scene tree updates automatically when using the tree view UI
- Check that the plugin is enabled in Tools → Plugins
- Undo/Redo scene rename does not update Scene Tree
- Add Fullscreen Viewport Projector option to scene context menu
Contributions are welcome! Please follow these guidelines:
- Fork the repository
- Create a feature branch:
git checkout -b feature/your-feature - Make your changes and test thoroughly
- Commit with clear, descriptive messages
- Push to your fork
- Create a Pull Request with a detailed description
- Clone the repository
- Follow the "Building from Source" section above
- Make your changes
- Test on all supported platforms if possible
- Submit a pull request
- Follow the existing code style in the repository
- Use
.clang-formatfor C++ formatting - Keep commits atomic and well-documented
This project is licensed under the GNU General Public License v2.0 or later – see the LICENSE file for details.
- Original author: DigitOtter
- OBS Studio: https://obsproject.com
- Qt Framework: https://www.qt.io
For issues, questions, or suggestions:
- Check the Troubleshooting section
- Search existing GitHub Issues
- Create a new issue with:
- OBS Studio version
- Plugin version
- Operating system and version
- Detailed description of the problem
- Steps to reproduce
- OBS log file (Help → Log Files)
