Skip to content

Commit 42273c1

Browse files
committed
ci
1 parent 722f90f commit 42273c1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/bevy_material/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.18.0-dev" }
1919
bevy_reflect = { path = "../bevy_reflect", version = "0.18.0-dev" }
2020
bevy_material_macros = { path = "macros", version = "0.18.0-dev" }
2121
bevy_math = { path = "../bevy_math", version = "0.18.0-dev" }
22-
bevy_mesh = { path = "../bevy_mesh", version = "0.18.0-dev", features = ["morph"]}
22+
bevy_mesh = { path = "../bevy_mesh", version = "0.18.0-dev" }
2323
bevy_image = { path = "../bevy_image", version = "0.18.0-dev" }
2424
bevy_shader = { path = "../bevy_shader", version = "0.18.0-dev" }
2525
bevy_transform = { path = "../bevy_transform", version = "0.18.0-dev" }

crates/bevy_pbr/src/material.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ impl Plugin for MaterialsPlugin {
297297
.add_render_command::<Transparent3d, DrawMaterial>()
298298
.add_render_command::<Opaque3d, DrawMaterial>()
299299
.add_render_command::<AlphaMask3d, DrawMaterial>()
300-
.add_systems(RenderStartup, init_material_pipeline)
300+
.add_systems(RenderStartup, init_material_pipeline.after(init_mesh_pipeline))
301301
.add_systems(
302302
Render,
303303
(

crates/bevy_pbr/src/render/mesh.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@ pub fn collect_meshes_for_gpu_building(
12521252
previous_input_buffer.ensure_nonempty();
12531253
}
12541254

1255-
fn init_mesh_pipeline(world: &mut World) {
1255+
pub fn init_mesh_pipeline(world: &mut World) {
12561256
let shader = load_embedded_asset!(world, "mesh.wgsl");
12571257
let mut system_state: SystemState<(
12581258
Res<RenderDevice>,

0 commit comments

Comments
 (0)