From f974bef8c54097f4c2acee478b734958dde8a4cd Mon Sep 17 00:00:00 2001 From: Sludge <96552222+SludgePhD@users.noreply.github.com> Date: Mon, 3 Oct 2022 17:11:38 +0200 Subject: [PATCH] Register `Wireframe` type --- crates/bevy_pbr/src/wireframe.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/bevy_pbr/src/wireframe.rs b/crates/bevy_pbr/src/wireframe.rs index 0872241c3a0ba..0d15b39f58044 100644 --- a/crates/bevy_pbr/src/wireframe.rs +++ b/crates/bevy_pbr/src/wireframe.rs @@ -36,7 +36,8 @@ impl Plugin for WireframePlugin { Shader::from_wgsl ); - app.register_type::() + app.register_type::() + .register_type::() .init_resource::() .add_plugin(ExtractResourcePlugin::::default());