Add missing implementation for #987

This commit is contained in:
Wojtek Figat
2023-05-12 14:56:19 +02:00
parent aab48f1cc1
commit b43196cd1a
3 changed files with 42 additions and 76 deletions

View File

@@ -20,4 +20,6 @@ void EditorScene::Update()
e.Call();
for (auto& e : Ticking.FixedUpdate.Ticks)
e.Call();
for (auto& e : Ticking.LateFixedUpdate.Ticks)
e.Call();
}