From 291bda9f17293c3c4ed2f3c8c7f4958f011a2291 Mon Sep 17 00:00:00 2001 From: Rob Parrett Date: Mon, 25 Nov 2024 16:04:05 -0800 Subject: [PATCH] 0.15 migration: Touch up entry for PR 15196 (#1849) --- .../15196_Rename_push_children_to_add_children.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/release-content/0.15/migration-guides/15196_Rename_push_children_to_add_children.md b/release-content/0.15/migration-guides/15196_Rename_push_children_to_add_children.md index 842a51f84e..45f72d8b54 100644 --- a/release-content/0.15/migration-guides/15196_Rename_push_children_to_add_children.md +++ b/release-content/0.15/migration-guides/15196_Rename_push_children_to_add_children.md @@ -1,7 +1,7 @@ -> -This section is optional. If there are no breaking changes, you can delete this section. +Some commands and methods for adding children to an entity were renamed for consistency. - -- If this PR is a breaking change (relative to the last release of Bevy), describe how a user might need to migrate their code to support these changes - -rename any use of `push_children()` to the updated `add_children()` +|0.14|0.15| +|-|-| +|`EntityCommands::push_children`|`add_children`| +|`PushChild`|`AddChild`| +|`PushChildren`|`AddChildren`|