🔄 Bevy Async ECS
What is Bevy Async ECS?
Bevy Async ECS is an asynchronous interface to the standard Bevy World
.
It aims to be simple and intuitive to use for those familiar with Bevy's ECS.
AsyncWorld
AsyncWorld
is the entrypoint for all further asynchronous manipulation of the world.
It can only be created using the FromWorld
trait implementation.
It should be driven by an executor running parallel with the main Bevy app
(this can either be one of the TaskPool
s or a blocking executor running on another thread).
Internally, the AsyncWorld
simply wraps an MPSC channel sender.
As such, it can be cheaply cloned and further sent to separate threads or tasks.
This means that all operations on the AsyncWorld
are processed in FIFO order.
However, there are no ordering guarantees between AsyncWorld
s or any derivatives sharing the same internal channel
sender, or any AsyncWorld
s constructed separately.
It is important to note that Bevy is still running and mutating the world while the async tasks run! Assume that the world could have been mutated between any asynchronous call. However, there are several ways to ensure that multiple commands are applied together, without mutation of the world in between:
- Construct a vanilla Bevy
CommandQueue
, and send it to the BevyWorld
withCommandQueueSender::send_queue()
- Use the queue builder provided by the
AsyncWorld
viaAsyncWorld::start_queue()
Basic example
use *;
use AsyncComputeTaskPool;
use *;
// vanilla Bevy system
Wasm Support
bevy-async-ecs
fully supports running in a web environment. Run the examples in your browser:
# One-time setup
rustup target install wasm32-unknown-unknown
cargo install wasm-server-runner
# Run examples
CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER=wasm-server-runner cargo run --target wasm32-unknown-unknown --example end_to_end
Multithreaded
bevy-async-ecs
does not explicitly require the multi-threaded
feature (though all the tests and non-browser examples do).
However, due to its asynchronous nature, this library inherently requires a multithreaded environment. In a web environment,
the browser provides this for us. On native platforms, the multi-threaded
feature will likely have to be enabled to prevent the
app from deadlocking.
Most recently compatible versions
bevy | bevy-async-ecs |
---|---|
0.14 | 0.6.1 |
0.13 | 0.5.1 |
0.12 | 0.4.1 |
0.11 | N/A |