Fast & Easy scene drawer (2D image layers with slow/random movement).
I use this as source to TEST and make other addons, or to do some image processing.
This add-on easily draws a scene with two independent layers of these enabled or disabled 'draw types':
- Image 1 (background)
- Image 2 (image)
- Text letters (Using two selectable colors or black-and-white mode.)
- Video (requires ofxHapPlayer and add
#define INCLUDE_HAP
and the addon.)
The addon does not make any layer Blending/Mixing.
- Check the
/bin/data
files: 2 images and 1 font in assets.
- ofxSurfingHelpers: Only for small ofxGui theming and example. Can be removed easely.
- GUI to Tweak settings.
- Auto Save/Load settings.
Look example.
#include "ofxSceneTEST.h"
ofxSceneTEST scene;
// Draws all channels:
// but the selected by "Force Source" slider:
// (0 is for all. Any other - 1, 2, 3 - makes solo each layer.)
scene.drawAll();
// Draws Independent channels:
//scene.drawChannel1();// draw 1st Channel
//scene.drawChannel2();// draw 2nd Channel
// Nothing more !
//--
scene.drawGui();