From 62c842c94c637f5d9979c49edb4914a390de2c22 Mon Sep 17 00:00:00 2001 From: jf908 Date: Wed, 11 Dec 2024 01:03:33 +0000 Subject: [PATCH] Register type `BoxShadow` (#16750) # Objective - Register `BoxShadow` type for reflection ## Testing - Tested that box shadow example compiles and runs ## Additional - It would be nice to have this in 0.15.1 --- crates/bevy_ui/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bevy_ui/src/lib.rs b/crates/bevy_ui/src/lib.rs index 4039930b76..3adb83fc37 100644 --- a/crates/bevy_ui/src/lib.rs +++ b/crates/bevy_ui/src/lib.rs @@ -170,6 +170,7 @@ impl Plugin for UiPlugin { .register_type::() .register_type::() .register_type::() + .register_type::() .register_type::() .register_type::() .register_type::()