From 9afa86ec9a9737da7b02c451a003c2d6af851cfe Mon Sep 17 00:00:00 2001 From: Andrew Hickman Date: Wed, 15 Jan 2025 06:24:19 +0000 Subject: [PATCH] Add type registration for PickingInteraction (#17372) I noticed that this component was not being returned correctly by the `bevy_remote` api ```json "errors": { "bevy_picking::focus::PickingInteraction": { "code": -23402, "message": "Unknown component type: `bevy_picking::focus::PickingInteraction`" } } ``` --- crates/bevy_picking/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bevy_picking/src/lib.rs b/crates/bevy_picking/src/lib.rs index 6b0b95f11b..29b1ebb7d1 100644 --- a/crates/bevy_picking/src/lib.rs +++ b/crates/bevy_picking/src/lib.rs @@ -362,6 +362,7 @@ impl Plugin for PickingPlugin { ) .register_type::() .register_type::() + .register_type::() .register_type::() .register_type::() .register_type::()