Module bevy_async_ecs::operation
source · Expand description
Types for interacting with the AsyncWorld directly, rather than through the convenience commands.
Structs
- The object-safe equivalent of a
Box<dyn Command>. - A queue of
AsyncOperations that will be applied to theAsyncWorldatomically in FIFO order. - Use this to send
Operations directly to the BevyWorld, where they will be applied during theLastschedule.
Enums
- An operation that can be applied to an
AsyncWorld. - An
Entity-related operation that can be applied to anAsyncWorld. - A
Reflect-related operation that can be applied to anAsyncWorld. - A
Resource-related operation that can be applied to anAsyncWorld. - A
System-related operation that can be applied to anAsyncWorld.