mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
05b0f28ebf
# Objective Fixes #15726 The extraction logic for components makes use of `FromReflect` to try and ensure we have a concrete type for serialization. However, we did not do the same for resources. The reason we're seeing this for the glam types is that #15174 also made a change to rely on the glam type's `Serialize` and `Deserialize` impls, which I don't think should have been merged (I'll put up a PR addressing this specifically soon). ## Solution Use `FromReflect` on extracted resources. ## Testing You can test locally by running: ``` cargo test --package bevy_scene ``` |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
README.md |