Skip to content

Commit e86cb6c

Browse files
committed
Mention the bevy_wgpu plugin
1 parent b01c606 commit e86cb6c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/bevy_render/src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,8 @@ impl Plugin for RenderPlugin {
229229

230230
fn check_for_render_resource_context(context: Option<Res<Box<dyn RenderResourceContext>>>) {
231231
if context.is_none() {
232-
panic!("bevy_render couldn't find a render backend. Try adding bevy_wgpu!")
232+
panic!(
233+
"bevy_render couldn't find a render backend. Perhaps try adding the bevy_wgpu plugin!"
234+
)
233235
}
234236
}

0 commit comments

Comments
 (0)