Simple color overlay/blend test plugin for Daydream Scope.
Blends a solid color with input video using RGBA controls. Perfect for testing the plugin system and understanding basic video processing.
# In Scope Settings > Plugins, install from:
git+https://github.com/andrwsun/scope-color-test.git# In Scope Settings > Plugins, browse to:
/Users/andrew/Desktop/scope local/scope-color-testClick Install and Scope will restart with the plugin loaded.
| Parameter | Type | Range | Default | Description |
|---|---|---|---|---|
| Red | Float | 0.0 - 1.0 | 1.0 | Red channel value |
| Green | Float | 0.0 - 1.0 | 1.0 | Green channel value |
| Blue | Float | 0.0 - 1.0 | 1.0 | Blue channel value |
| Alpha | Float | 0.0 - 1.0 | 0.5 | Blend amount (0 = original, 1 = full color) |
All parameters are runtime - adjust them live during streaming!
- Connect a video source (camera or file)
- Select Color Test from the pipeline dropdown
- Adjust RGB sliders to pick your color
- Use Alpha to control how much it blends with the original video
After editing the code:
- Go to Settings > Plugins
- Click Reload next to "scope-color-test"
- Changes take effect immediately (no reinstall needed)
# Blending formula
result = original_video * (1 - alpha) + solid_color * alphaalpha = 0.0: Shows 100% original videoalpha = 0.5: 50/50 mixalpha = 1.0: Shows 100% solid color