bevy/release-content/migration-guides/picking_location_not_component.md
atlv 031fa25ff6
fix(picking): Location is not a Component anymore. (#19306)
# Objective

- Fixes #17390

## Solution

- Remove Component derive

## Testing

- cargo clippy
2025-05-22 01:33:01 +00:00

7 lines
243 B
Markdown

---
title: Location is not a Component anymore
pull_requests: [19306]
---
`bevy_picking::Location` was erroneously made a `Component`. It is no longer one, `bevy_picking::PointerLocation` wraps a `Location` and is the intended usage pattern.