From a311f30a9f776e0810eab2e48f36e3a5594a29df Mon Sep 17 00:00:00 2001 From: Sludge <96552222+SludgePhD@users.noreply.github.com> Date: Fri, 10 Nov 2023 01:24:38 +0100 Subject: [PATCH] Register `WireframeColor` --- crates/bevy_pbr/src/wireframe.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bevy_pbr/src/wireframe.rs b/crates/bevy_pbr/src/wireframe.rs index 2d533e7e52f5c..dc1075090c891 100644 --- a/crates/bevy_pbr/src/wireframe.rs +++ b/crates/bevy_pbr/src/wireframe.rs @@ -36,6 +36,7 @@ impl Plugin for WireframePlugin { app.register_type::() .register_type::() .register_type::() + .register_type::() .init_resource::() .add_plugins(MaterialPlugin::::default()) .add_systems(Startup, setup_global_wireframe_material)