Hi,
I have a scene with 2 assets manager (1 for textures, 1 for meshes).
What is the best way to load everything. Something like
scene.executeWhenReady() {
firstManager.load()
firstManager.onFinish () {
secondManager.load();
}
secondManager.onFinish () {
runRenderLoop()
}
}