# Objective Fixes #20139 ## Solution Implement the methods, and leverage them where applicable ## Testing Added unit tests --- ## Showcase ```rust let id = entity_world_mut.id(); let world = entity_world_mut.into_world_mut(); world.resource_scope::<_, _>(|world, res| { let entity_world_mut = world.entity_mut(id); /* ... */ }); ``` becomes ```rust entity_world_mut.resource_scope::<_, _>(|entity, res| { /* ... */ }); ``` |
||
|---|---|---|
| .. | ||
| components | ||
| commands.rs | ||
| helper.rs | ||
| lib.rs | ||
| plugins.rs | ||
| systems.rs | ||
| traits.rs | ||