-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Description
Bevy version
0.15 (happened on 0.14 too)
Relevant system information
os: "Linux 22.04 Ubuntu"
kernel: "6.8.0-49-generic"
cpu: "Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz"
core_count: "4"
memory: "15.5 GiB"
AdapterInfo { name: "NVIDIA GeForce GTX 1050", vendor: 4318, device: 7309, device_type: DiscreteGpu, driver: "NVIDIA", driver_info: "535.183.01", backend: Vulkan}
What you did
Tried to use specific mesh/primitive from Gltf file, that also contains armature inside
What went wrong
Received wgpu error:
2024-12-22T13:38:16.509152Z ERROR wgpu::backend::wgpu_core: Handling wgpu errors as fatal by default
thread 'Compute Task Pool (2)' panicked at /home/patrick/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-23.0.1/src/backend/wgpu_core.rs:2976:18:
wgpu error: Validation Error
Caused by:
In RenderPass::end
In a draw command, kind: Draw
The BindGroupLayout with 'mesh_layout' label of current set BindGroup with 'model_only_mesh_bind_group' label at index 1 is not compatible with the corresponding BindGroupLayout with 'skinned_mesh_layout' label of RenderPipeline with 'pbr_opaque_mesh_pipeline' label
Expected entry with binding 1 not found in assigned bind group layout
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Encountered a panic in system `bevy_render::renderer::render_system`!
thread 'main' panicked at /home/patrick/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-hal-23.0.1/src/vulkan/instance.rs:173:58:
Trying to destroy a SurfaceSemaphores that is still in use by a SurfaceTexture
Additional information
Minimal reproduction app (you can comment and uncomment parts to test)
It contains 2 assets: They contain same mesh and material but one of the files also contains armature. File without armature loads correctly inside bevy, but the one with armature loads only as a scene. I dont like using scenes much, so I tried extracting mesh and material manually but it causes game to crash
Similar to #10810.