remove debug code

This commit is contained in:
jrkb 2023-03-26 19:42:57 +02:00
parent 2de3eeadf2
commit 7c3b8767e8

View file

@ -1,4 +1,5 @@
#include "LayerComposition.h"
#include "ofUtils.h"
namespace ofxVariableLab {
@ -34,16 +35,9 @@ void LayerComposition::update(){
}
void LayerComposition::draw() const {
//ofClear(ofFloatColor(
//ofRandom(0, 1),
//ofRandom(0, 1),
//ofRandom(0, 1)
//));
for(const auto & layer : layers){
layer->draw();
}
ofPushStyle();
ofPopStyle();
}
shared_ptr <ofImage> LayerComposition::getAtlasImage(){