-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bevy_reflect: Remove
PartialReflect::serializable
(#16576)
# Objective `PartialReflect::serializable` is unused in the codebase and should be removed. I believe it originally was used to handle serializing certain types but that's no longer the case. ## Solution Remove `PartialReflect::serializable`. ## Testing You can check locally using: ``` cargo check -p bevy_reflect --all-features ``` --- ## Migration Guide `PartialReflect::serializable` has been removed. If you were using this to pass on serialization information, use `ReflectSerialize` instead or create custom type data to generate the `Serializable`.
- Loading branch information
Showing
2 changed files
with
2 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters