Expand description
Traits§
Functions§
- init_
resource - A
Command
that inserts aResource
into the world using a value created with theFromWorld
trait. - insert_
batch - A
Command
that consumes an iterator to add a series ofBundles
to a set of entities. - insert_
resource - A
Command
that inserts aResource
into the world. - remove_
resource - A
Command
that removes aResource
from the world. - run_
schedule - A
Command
that runs the schedule corresponding to the givenScheduleLabel
. - run_
system - A
Command
that runs the system corresponding to the givenSystemId
. - run_
system_ cached - A
Command
that runs the given system, caching itsSystemId
in aCachedSystemId
resource. - run_
system_ cached_ with - A
Command
that runs the given system with the given input value, caching itsSystemId
in aCachedSystemId
resource. - run_
system_ with - A
Command
that runs the system corresponding to the givenSystemId
and provides the given input value. - send_
event - A
Command
that sends an arbitraryEvent
. - spawn_
batch - A
Command
that consumes an iterator ofBundles
to spawn a series of entities. - trigger
- A
Command
that sends a globalTrigger
without any targets. - trigger_
targets - A
Command
that sends aTrigger
for the given targets. - unregister_
system - A
Command
that removes a system previously registered withCommands::register_system
orWorld::register_system
. - unregister_
system_ cached - A
Command
that removes a system previously registered with one of the following: