We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b01c606 commit e86cb6cCopy full SHA for e86cb6c
crates/bevy_render/src/lib.rs
@@ -229,6 +229,8 @@ impl Plugin for RenderPlugin {
229
230
fn check_for_render_resource_context(context: Option<Res<Box<dyn RenderResourceContext>>>) {
231
if context.is_none() {
232
- panic!("bevy_render couldn't find a render backend. Try adding bevy_wgpu!")
+ panic!(
233
+ "bevy_render couldn't find a render backend. Perhaps try adding the bevy_wgpu plugin!"
234
+ )
235
}
236
0 commit comments