I'm trying to add a test to bevy_gltf asset loader and it seems to never go beyond the loading stage. I tried to mimic how asset_server itself is tested but it didn't work.
https://gist.github.com/freiksenet/b6fe551a8be586687906f0f051295c8b
6 messages · Page 1 of 1 (latest)
I'm trying to add a test to bevy_gltf asset loader and it seems to never go beyond the loading stage. I tried to mimic how asset_server itself is tested but it didn't work.
https://gist.github.com/freiksenet/b6fe551a8be586687906f0f051295c8b
heh, the problem was that plugin.finish() was never caled
it works if I manually register the asset loader, but somehow finish is never called otheriwse
Huh. When is finish() called? In app.run()?