You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learn/migration-guides/0.15-to-0.16.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,5 +14,6 @@ The most important changes to be aware of this release are:
14
14
15
15
- Bevy has reworked its error handling to make it easier to handle `Result`s everywhere. As a result, `Query::single` and friends now return results, rather than panicking.
16
16
- Bevy's ECS now has built-in one-to-many entity relationships. The existing parent-child hierarchy system has been modified to use these relationships, causing minor breaking changes in entity despawning behavior and how children are added / replaced for a parent entity.
17
+
- The `bevy` crate now supports `no_std` platforms. As part of this, many items (like `HashMap`) from `bevy_utils` have been moved into `bevy_platform_support`. If you are the author of an ecosystem crate, you may want to offer `no_std` support to your users as well: it's generally straightforward unless you're interfacing directly with the underlying operating system.
0 commit comments