Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Objective In `bevy_sprite`, the `Anchor` type is not `Copy`. It makes interacting with it more difficult than necessary. ## Solution Derive `Copy` on it. The rust API guidelines are that you should derive `Copy` when possible. <https://rust-lang.github.io/api-guidelines/interoperability.html#types-eagerly-implement-common-traits-c-common-traits> Regardless, `Anchor` is a very small `enum` which warrants `Copy`. --- ## Changelog - In `bevy_sprite` `Anchor` is now `Copy`. --------- Co-authored-by: Carter Anderson <[email protected]>
- Loading branch information