Expand description
Traits§
Functions§
- init_
resource - A
Commandthat inserts aResourceinto the world using a value created with theFromWorldtrait. - insert_
batch - A
Commandthat consumes an iterator to add a series ofBundlesto a set of entities. - insert_
resource - A
Commandthat inserts aResourceinto the world. - remove_
resource - A
Commandthat removes aResourcefrom the world. - run_
schedule - A
Commandthat runs the schedule corresponding to the givenScheduleLabel. - run_
system - A
Commandthat runs the system corresponding to the givenSystemId. - run_
system_ cached - A
Commandthat runs the given system, caching itsSystemIdin aCachedSystemIdresource. - run_
system_ cached_ with - A
Commandthat runs the given system with the given input value, caching itsSystemIdin aCachedSystemIdresource. - run_
system_ with - A
Commandthat runs the system corresponding to the givenSystemIdand provides the given input value. - send_
event Deprecated - A
Commandthat writes an arbitraryMessage. - spawn_
batch - A
Commandthat consumes an iterator ofBundlesto spawn a series of entities. - trigger
- Triggers the given
Event, which will run anyObservers watching for it. - trigger_
with - Triggers the given
Eventusing the givenTrigger, which will run anyObservers watching for it. - unregister_
system - A
Commandthat removes a system previously registered withCommands::register_systemorWorld::register_system. - unregister_
system_ cached - A
Commandthat removes a system previously registered with one of the following: - write_
message - A
Commandthat writes an arbitraryMessage.