Description
Bevy version
0.4
Operating system & version
Latest Archlinux
What you did
[dependencies]
bevy = { version = "0.4", features = ["dynamic", "bevy_gltf"], default-features = false }
And then asset_server.load_folder(...)
.
What you expected to happen
It allows me to load gltf files without having a render backend (Since I only need the mesh in this case)
It simply loads the gltf file.
What actually happened
A panic with the following message: (A dependency was activating the Resource does not exist alloc::boxed::Box<dyn bevy_render::renderer::render_resource_context::RenderResourceContext>
render
feature of bevy but I was not adding a backend)
It panics with an error: "thread 'IO Task Pool (1)' panicked at 'Failed to find AssetLifecycle for label Some("Mesh0/Primitive0"), which has an asset type 8ecbac0f-f545-4473-ad43-e1f4243af51e. Are you sure that is a registered asset type?',"
Additional information