From 7dfc77b999354dc3bd3c77b258e1849cbd250bea Mon Sep 17 00:00:00 2001 From: Marco Buono Date: Wed, 4 Dec 2024 15:16:48 -0300 Subject: [PATCH] Add missing registration for `TextEntity` (#16649) # Objective Fix a [Blenvy](https://github.com/kaosat-dev/Blenvy) crash due to a missing type registration for `TextEntity` (as the type is used by `ComputedTextBlock` but wasn't itself registered.) ## Solution - Added the missing type registration ## Testing - N/A --- crates/bevy_text/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bevy_text/src/lib.rs b/crates/bevy_text/src/lib.rs index cd5fba2ca4..ad9feb7fdc 100644 --- a/crates/bevy_text/src/lib.rs +++ b/crates/bevy_text/src/lib.rs @@ -118,6 +118,7 @@ impl Plugin for TextPlugin { .register_type::() .register_type::() .register_type::() + .register_type::() .init_asset_loader::() .init_resource::() .init_resource::()