use default value for setup

This commit is contained in:
jrkb 2023-04-11 13:17:03 +02:00
parent 9f6fba0281
commit 454591f2b5

View file

@ -129,7 +129,7 @@ const ofImage & LayerComposition::getAtlasImage(const ComboIdentifier & identifi
void LayerComposition::draw() const {
for(const auto & layer_it : layers){
layer_it.second->draw(glm::vec3(0, 0, 0));
layer_it.second->draw();
}
}