-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Merged by Bors] - Remove QueuedText
#7414
Conversation
This is a breaking change as it alters the public interface. Can you put a changelog and migration guide section in the PR description? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree: this is a leaked implementation detail.
IMO this could use a changelog, but there's no migration guide to write, as the type was useless. |
bors r+ |
## Objective Remove `QueuedText`. `QueuedText` isn't useful. It's exposed in the `bevy_ui` public interface but can't be used for anything because its `entities` field is private. ## Solution Remove the `QueuedText` struct and use a `Local<Vec<Entity>` in its place. ## Changelog * Removed `QueuedText`
Pull request successfully merged into main. Build succeeded:
|
## Objective Remove `QueuedText`. `QueuedText` isn't useful. It's exposed in the `bevy_ui` public interface but can't be used for anything because its `entities` field is private. ## Solution Remove the `QueuedText` struct and use a `Local<Vec<Entity>` in its place. ## Changelog * Removed `QueuedText`
Objective
Remove
QueuedText
.QueuedText
isn't useful. It's exposed in thebevy_ui
public interface but can't be used for anything because itsentities
field is private.Solution
Remove the
QueuedText
struct and use aLocal<Vec<Entity>
in its place.Changelog
QueuedText