Ben Harper
Ben Harper
Make sure you comple with -threaded. @owickstrom this is definitely something which could be better documented.
No worries. As you said - it's a low frequency operation so it's not a major issue. Maybe I'll have a look at optimising it, though I'm not a rust...
+1 for this being convenient, I'm currently cloning `EntityMapper` to avoid having to think about how to satisfy the borrow checker in https://github.com/aristaeus/bevy_mod_desync
Thinking about this more, we can do something like `Fn`/`FnMut` in the standard library: * Provide `MapEntities` and `MapEntitiesMut`, with a blanket `impl MapEntitesMut for T` * Rename all current...
Yes, exactly. I'll work on a PR in the next couple of days.
Yeah, I ran into some trouble trying this. Splitting `EntityMapper` and adding a blanket impl is easy, but there's no correct way to write down `MapEntities(Mut)`. I've noticed that components...
Whoops, didn't think I'd need to run the lints...