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 4c8e36d commit e6fc4ceCopy full SHA for e6fc4ce
crates/transform-gizmo-bevy/src/render.rs
@@ -46,7 +46,7 @@ impl Plugin for TransformGizmoRenderPlugin {
46
app.init_resource::<DrawDataHandles>()
47
.add_plugins(RenderAssetPlugin::<GizmoDrawData>::default());
48
49
- let Ok(render_app) = app.get_sub_app_mut(RenderApp) else {
+ let Some(render_app) = app.get_sub_app_mut(RenderApp) else {
50
return;
51
};
52
@@ -62,7 +62,7 @@ impl Plugin for TransformGizmoRenderPlugin {
62
}
63
64
fn finish(&self, app: &mut App) {
65
66
67
68
0 commit comments