Open
Description
Bevy version
release-0.16.0
[Optional] Relevant system information
SystemInfo { os: "Linux (NixOS 25.05)", kernel: "6.12.24", cpu: "Intel(R) Core(TM) i7-10710U CPU @ 1.10GHz", core_count: "6", memory: "15.3 GiB" }
AdapterInfo { name: "Intel(R) UHD Graphics (CML GT2)", vendor: 32902, device: 39882, device_type: IntegratedGpu, driver: "Intel open-source Mesa driver", driver_info: "Mesa 25.0.4", backend: Vulkan }
What you did
cargo r -r --features wayland --example alter_mesh
What went wrong
This example should have 2 mesh, the right one should alternate between a sphere and a cube when press spacebar, however the sphere won't show.
Additional information
I have created a repo to test this issue, added bevy-inspector-egui to check entities. It seems that the mesh shows up when I checks the mesh3d component(keep this unfolded also works) in inspector ui, so probably it didn't get updated or something(or lazy loading)?
A screenshot shows the sphere shows up after I click the mesh3d component.
My repo: test-alter-mesh