Mike
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:...
# 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...
## 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...
# 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...
# 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...
# 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...
# 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...