First incomplete implementation of garbage collector in Scene

This commit is contained in:
brunoherbelin
2020-05-05 17:17:29 +02:00
parent 4e2e3bc739
commit 451c793cdd
11 changed files with 202 additions and 101 deletions

View File

@@ -39,7 +39,7 @@ void View::saveSettings()
void View::update(float dt)
{
// recursive update from root of scene
scene.root()->update( dt );
scene.update( dt );
}
MixingView::MixingView() : View(MIXING)