From 7d5a7cc76d3e823ba9daafceb96b9c93360fcfdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C5=81abor?= Date: Mon, 19 Sep 2022 22:50:35 +0000 Subject: [PATCH] Register missing bevy_text types (#6029) Register two missing bevy_text types. --- crates/bevy_text/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/bevy_text/src/lib.rs b/crates/bevy_text/src/lib.rs index f9257dfa71..853cf5799a 100644 --- a/crates/bevy_text/src/lib.rs +++ b/crates/bevy_text/src/lib.rs @@ -62,6 +62,8 @@ impl Plugin for TextPlugin { .add_asset::() .register_type::() .register_type::() + .register_type::>() + .register_type::() .register_type::() .register_type::() .register_type::()