mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
b7028110fa
# 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 <mcanders1@gmail.com> |
||
---|---|---|
.. | ||
src | ||
Cargo.toml |