We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a38f608 commit 77ce055Copy full SHA for 77ce055
crates/bevy_pbr/src/render/mesh.rs
@@ -264,7 +264,10 @@ impl Plugin for MeshRenderPlugin {
264
265
render_app
266
.add_systems(RenderStartup, init_mesh_pipeline_view_layouts)
267
- .add_systems(RenderStartup, init_mesh_pipeline);
+ .add_systems(
268
+ RenderStartup,
269
+ init_mesh_pipeline.after(init_mesh_pipeline_view_layouts),
270
+ );
271
}
272
273
// Load the mesh_bindings shader module here as it depends on runtime information about
0 commit comments