Module bevy_internal::ecs::prelude
source · Expand description
Most commonly used re-exported types.
Structs
- A filter on a component that only retains results added after the system last ran.
- The
AnyOf
query parameter fetches entities with any of the component types included in T. - A
Resource
storingTypeRegistry
for type registrations relevant to a whole app. - A filter on a component that only retains results added or mutably dereferenced after the system last ran.
- A
SystemParam
that stores a buffer which gets applied to theWorld
duringapply_deferred
. This is used internally byCommands
to deferWorld
mutations. - Lightweight identifier of an entity.
- Provides mutable access to a single entity and all of its components.
- A read-only reference to a particular
Entity
and all of its components. - A mutable reference to a particular
Entity
, and the entire world. This is essentially a performance-optimized(Entity, &mut World)
tuple, which caches theEntityLocation
to reduce duplicate lookups. - Reads events of type
T
in order and tracks which events have already been read. - Sends events of type
T
. - An event collection that represents the events that occurred within the last two
Events::update
calls. Events can be written to using anEventWriter
and are typically cheaply read using anEventReader
. - Returns a bool that describes if an entity has the component
T
. - Wrapper type to mark a
SystemParam
as an input. - A system local
SystemParam
. - Unique mutable borrow of an entity’s component or of a resource.
- The next state of
State<S>
. - Shared borrow of a non-
Send
resource. - Unique borrow of a non-
Send
resource. - A filter that tests if any of the given filters apply.
- An alternative to
Commands
that can be used in parallel contexts, such as those inQuery::par_iter
- A collection of potentially conflicting
SystemParam
s allowed by disjoint access. - Builder struct to create
QueryState
instances at runtime. - Shared borrow of an entity’s component with access to change detection. Similar to
Mut
but is immutable and so doesn’t require unique access. - A struct used to operate on reflected
Component
trait of a type. - A struct used to operate on the reflected
FromWorld
trait of a type. - A struct used to operate on reflected
Resource
of a type. - A
SystemParam
that yields entities that had theirT
Component
removed or have been despawned with it. - Shared borrow of a
Resource
. - Unique mutable borrow of a
Resource
. - A collection of systems, and the metadata and executor needed to run them in a certain order under certain conditions.
- A finite-state machine whose transitions have associated schedules ([
OnEnter(state)
] and [OnExit(state)
]). - Event sent when any state transition of
S
happens. - Filter that selects entities with a component
T
. - Filter that selects entities without a component
T
. - Stores and exposes operations on entities, components, resources, and their associated metadata.
Traits
- The
Bundle
trait enables insertion and removal ofComponent
s from an entity. - A data type that can be used to store data for an entity.
- A system that determines if one or more scheduled systems should run.
- Types that can read change detection information. This change detection is controlled by
DetectChangesMut
types such asResMut
. - Types that implement reliable change detection.
- A type that can be stored in an
Events<E>
resource You can conveniently access events using theEventReader
andEventWriter
system parameter. - Creates an instance of the type this trait is implemented for using data from the supplied
World
. - Conversion trait to turn something into a
System
. - Types that can convert into a
SystemConfigs
. - Types that can be converted into a
SystemSet
. - Types that can convert into a
SystemSetConfigs
. System
types that do not modify theWorld
when run. This is implemented for any systems whose parameters all implementReadOnlySystemParam
.- A type that can be inserted into a
World
as a singleton. - Types that can define world-wide states in a finite-state machine.
- An ECS system that can be added to a
Schedule
- A trait implemented for all functions that can be used as
System
s. - Types that identify logical groups of systems.
Functions
- Generates a
Condition
-satisfying closure that returnstrue
if there are any entity with a component of the given type removed. - A
Condition
-satisfying system that returnstrue
if there are any entities with the given component type. - Instructs the executor to call
System::apply_deferred
on the systems that have run but not applied theirDeferred
system parameters (likeCommands
) or other system buffers. - If a new state is queued in
NextState<S>
, this system: - Generates a
Condition
-satisfying closure that returnstrue
if the state machine is currently instate
. - Generates a
Condition
that inverses the result of passed one. - Generates a
Condition
-satisfying closure that returnstrue
if there are any new events of the given type since it was last called. - A
Condition
-satisfying system that returnstrue
if the resource of the given type has been added since the condition was last checked. - A
Condition
-satisfying system that returnstrue
if the resource of the given type has had its value changed since the condition was last checked. - Generates a
Condition
-satisfying closure that returnstrue
if the resource of the given type has had its value changed since the condition was last checked. - A
Condition
-satisfying system that returnstrue
if the resource exists. - A
Condition
-satisfying system that returnstrue
if the resource of the given type has had its value changed since the condition was last checked. - Generates a
Condition
-satisfying closure that returnstrue
if the resource exists and is equal tovalue
. - Generates a
Condition
-satisfying closure that returnstrue
if the resource of the given type has been removed since the condition was last checked. - Generates a
Condition
-satisfying closure that returnstrue
if the first time the condition is run and false every time after - A
Condition
-satisfying system that returnstrue
if the state machine changed state. - A
Condition
-satisfying system that returnstrue
if the state machine exists. - state_exists_and_equalsDeprecatedIdentical to
in_state
- use that instead.
Derive Macros
- Derive macro generating an impl of the trait
SystemSet
.