Consistent formatting of entities in error messages #16104
Labels
A-Diagnostics
Logging, crash handling, error reporting and performance analysis
C-Usability
A targeted quality-of-life change that makes Bevy easier to use
D-Straightforward
Simple bug fixes and API improvements, docs, test and examples
S-Ready-For-Implementation
This issue is ready for an implementation PR. Go for it!
How can Bevy's documentation be improved?
Some error messages (such as in
EntityCommands::insert
)Debug
-format entities, while others (such as inInsertReflect
) useDisplay
-formatting. This should be made more consistent.Display format is
{id}v{generation}
while Debug format is{id}v{generation}#{raw bits}
. The raw bits contain the same data, but are useful for comparing with serialized entities.The text was updated successfully, but these errors were encountered: