Mike

Results 67 issues of Mike

# Objective - Cleanup a doubled `Entity` in log components ``` // Before 2024-07-05T19:54:09.082773Z INFO bevy_ecs::system::commands: Entity Entity { index: 2, generation: 1 }: ["bevy_transform::components::transform::Transform"] // After 2024-07-05T19:54:09.082773Z INFO bevy_ecs::system::commands:...

D-Trivial
C-Usability
A-Diagnostics
S-Needs-Review

# Objective - There was a new warning added about having an unstyled child in the ui hierarchy. Debugging the new error is pretty hard without any info about which...

D-Trivial
C-Usability
S-Ready-For-Final-Review
A-Diagnostics
X-Uncontroversial

## What problem does this solve or what need does it fill? We have `ParamSet` for safely switching access between 2 system params that conflict with each other, but we...

C-Enhancement
A-ECS
D-Complex
X-Uncontroversial

# Objective - Continue to pare down the uses on NonSend resources in the engine. In this case, EventLoopProxy used to be `!Sync`, but is now `Sync` in the latest...

C-Usability
A-App
C-Breaking-Change
S-Needs-Review

# Objective - Trying to doc most of the unsafe in the ecs crate so we can turn on `unsafe_op_in_unsafe_fn`. ## Solution - Unfortunately reviewing the unsafe docs will probably...

C-Docs
A-ECS
D-Straightforward
D-Unsafe
S-Needs-Review

# Objective - Add a checked version of `EntityMut::get_components_mut` and `EntityWorldMut::get_components_mut` that does not allocate ## Solution - Add a iterator over the access type to `QueryData`. This is then...

C-Feature
A-ECS
M-Release-Note
S-Needs-Review

# Objective - I was experimenting with a library for combining multiple systems into one system that could be scheduled, but there wasn't a way of marking a function system...

C-Feature
A-ECS
S-Ready-For-Final-Review
X-Contentious