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
Hierarchy editing methods such as `with_children` and `push_children` have been removed from `WorldChildBuilder`.
376
-
You can edit the hierarchy via `EntityMut` instead.
375
+
Hierarchy editing methods such as `with_children` and `push_children` have been removed from `WorldChildBuilder`. You can edit the hierarchy via `EntityMut` instead.
Remove `.unwrap()` from `add_node_edge` and `add_slot_edge`.
561
-
For cases where the error was handled, use `try_add_node_edge` and `try_add_slot_edge` instead.
559
+
Remove `.unwrap()` from `add_node_edge` and `add_slot_edge`. For cases where the error was handled, use `try_add_node_edge` and `try_add_slot_edge` instead.
562
560
563
-
Remove `.unwrap()` from `input_node`.
564
-
For cases where the option was handled, use `get_input_node` instead.
561
+
Remove `.unwrap()` from `input_node`. For cases where the option was handled, use `get_input_node` instead.
565
562
566
563
### [Add AutoMax next to ScalingMode::AutoMin](https://github.com/bevyengine/bevy/pull/6496)
567
564
@@ -658,7 +655,7 @@ The `FrameCount` resource was previously only updated when using the `bevy_rend
658
655
<div class="migration-guide-area-tag">Tasks</div>
659
656
</div>
660
657
661
-
**App`runner` and SubApp `extract` functions are now required to be Send**
658
+
__App`runner` and SubApp `extract` functions are now required to be Send__
662
659
663
660
This was changed to enable pipelined rendering. If this breaks your use case please report it as these new bounds might be able to be relaxed.
664
661
@@ -703,23 +700,17 @@ The `background_color` field of `ExtractedUiNode` is now named `color`.
`GlobalTransform::translation_mut` has been removed without alternative,
707
-
if you were relying on this, update the `Transform` instead. If the given entity
708
-
had children or parent, you may need to remove its parent to make its transform
709
-
independent (in which case the new `Commands::set_parent_in_place` and
710
-
`Commands::remove_parent_in_place` may be of interest)
703
+
`GlobalTransform::translation_mut` has been removed without alternative, if you were relying on this, update the `Transform` instead. If the given entity had children or parent, you may need to remove its parent to make its transform independent (in which case the new `Commands::set_parent_in_place` and `Commands::remove_parent_in_place` may be of interest)
711
704
712
-
Bevy may add in the future a way to toggle transform propagation on
713
-
an entity basis.
705
+
Bevy may add in the future a way to toggle transform propagation on an entity basis.
714
706
715
-
### [Change the default `width` and `height` of `Size` to `Val::Auto`](https://github.com/bevyengine/bevy/pull/7475)
707
+
### [change the default `width` and `height` of `Size` to `Val::Auto`](https://github.com/bevyengine/bevy/pull/7475)
716
708
717
709
<divclass="migration-guide-area-tags">
718
710
<div class="migration-guide-area-tag">UI</div>
719
711
</div>
720
712
721
-
The default values for `Size``width` and `height` have been changed from `Val::Undefined` to `Val::Auto`.
722
-
It’s unlikely to cause any issues with existing code.
713
+
The default values for `Size``width` and `height` have been changed from `Val::Undefined` to `Val::Auto`. It’s unlikely to cause any issues with existing code.
0 commit comments