thebluefish

Results 3 comments of thebluefish

I am experiencing the same issue on Windows 10, running [the bevymark example](https://bevyengine.org/examples/Stress%20Tests/bevymark/), I get different errors depending on browser. Chrome: > Uncaught (in promise) RuntimeError: unreachable at 04f0e2a2:0x1008f6c at...

[World::resource_scope](https://docs.rs/bevy/latest/bevy/ecs/prelude/struct.World.html#method.resource_scope) is a convenient work-around until the accesses for `EntityRef`/`EntityMut` are fixed. Though it does feel quite boilerplate-y: ```rust fn sys(world: &mut World, state: &mut SystemState) { world.resource_scope(|world, mut foo:...

I like the idea of adding it in `App::new`/`default`, and `App::empty` already exists for those who want a bit more control. I think doing some kind of pub `App::init_logging` that's...