Skip to content

Commit 77ce055

Browse files
committed
ci
1 parent a38f608 commit 77ce055

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/bevy_pbr/src/render/mesh.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,10 @@ impl Plugin for MeshRenderPlugin {
264264

265265
render_app
266266
.add_systems(RenderStartup, init_mesh_pipeline_view_layouts)
267-
.add_systems(RenderStartup, init_mesh_pipeline);
267+
.add_systems(
268+
RenderStartup,
269+
init_mesh_pipeline.after(init_mesh_pipeline_view_layouts),
270+
);
268271
}
269272

270273
// Load the mesh_bindings shader module here as it depends on runtime information about

0 commit comments

Comments
 (0)