diff --git a/crates/bevy_picking/src/focus.rs b/crates/bevy_picking/src/focus.rs index 8c3246d96ea9a..e730e41ce7d45 100644 --- a/crates/bevy_picking/src/focus.rs +++ b/crates/bevy_picking/src/focus.rs @@ -200,7 +200,7 @@ pub enum PickingInteraction { None = 0, } -/// Uses pointer events to update [`PointerInteraction`] and [`PickingInteraction`] components. +/// Uses [`HoverMap`] changes to update [`PointerInteraction`] and [`PickingInteraction`] components. pub fn update_interactions( // Input hover_map: Res, diff --git a/crates/bevy_picking/src/lib.rs b/crates/bevy_picking/src/lib.rs index 9a04220ba26cf..ed77e98926c25 100644 --- a/crates/bevy_picking/src/lib.rs +++ b/crates/bevy_picking/src/lib.rs @@ -414,7 +414,7 @@ impl Plugin for InteractionPlugin { .add_event::>() .add_systems( PreUpdate, - (update_focus, pointer_events, update_interactions) + (update_focus, update_interactions, pointer_events) .chain() .in_set(PickSet::Focus), );