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 the AsyncWorld atomically in FIFO order.
  • Use this to send Operations directly to the Bevy World, where they will be applied during the Last schedule.

Enums

  • An operation that can be applied to an AsyncWorld.
  • An Entity-related operation that can be applied to an AsyncWorld.
  • A Reflect-related operation that can be applied to an AsyncWorld.
  • A Resource-related operation that can be applied to an AsyncWorld.
  • A System-related operation that can be applied to an AsyncWorld.