Struct bevy_internal::ecs::world::EntityMut
source · pub struct EntityMut<'w> { /* private fields */ }
Expand description
A mutable reference to a particular Entity
and all of its components
Implementations§
source§impl<'w> EntityMut<'w>
impl<'w> EntityMut<'w>
sourcepub fn location(&self) -> EntityLocation
pub fn location(&self) -> EntityLocation
Gets metadata indicating the location where the current entity is stored.
sourcepub fn archetype(&self) -> &Archetype
pub fn archetype(&self) -> &Archetype
Returns the archetype that the current entity belongs to.
sourcepub fn contains<T>(&self) -> boolwhere
T: Component,
pub fn contains<T>(&self) -> boolwhere T: Component,
Returns true
if the current entity has a component of type T
.
Otherwise, this returns false
.
Notes
If you do not know the concrete type of a component, consider using
Self::contains_id
or Self::contains_type_id
.
sourcepub fn contains_id(&self, component_id: ComponentId) -> bool
pub fn contains_id(&self, component_id: ComponentId) -> bool
Returns true
if the current entity has a component identified by component_id
.
Otherwise, this returns false.
Notes
- If you know the concrete type of the component, you should prefer
Self::contains
. - If you know the component’s
TypeId
but not itsComponentId
, consider usingSelf::contains_type_id
.
sourcepub fn contains_type_id(&self, type_id: TypeId) -> bool
pub fn contains_type_id(&self, type_id: TypeId) -> bool
Returns true
if the current entity has a component with the type identified by type_id
.
Otherwise, this returns false.
Notes
- If you know the concrete type of the component, you should prefer
Self::contains
. - If you have a
ComponentId
instead of aTypeId
, consider usingSelf::contains_id
.
sourcepub fn get<T>(&self) -> Option<&T>where
T: Component,
pub fn get<T>(&self) -> Option<&T>where T: Component,
Gets access to the component of type T
for the current entity.
Returns None
if the entity does not have a component of type T
.
sourcepub fn get_mut<T>(&mut self) -> Option<Mut<'_, T>>where
T: Component,
pub fn get_mut<T>(&mut self) -> Option<Mut<'_, T>>where T: Component,
Gets mutable access to the component of type T
for the current entity.
Returns None
if the entity does not have a component of type T
.
sourcepub fn get_change_ticks<T>(&self) -> Option<ComponentTicks>where
T: Component,
pub fn get_change_ticks<T>(&self) -> Option<ComponentTicks>where T: Component,
Retrieves the change ticks for the given component. This can be useful for implementing change detection in custom runtimes.
sourcepub fn get_change_ticks_by_id(
&self,
component_id: ComponentId
) -> Option<ComponentTicks>
pub fn get_change_ticks_by_id( &self, component_id: ComponentId ) -> Option<ComponentTicks>
Retrieves the change ticks for the given ComponentId
. This can be useful for implementing change
detection in custom runtimes.
You should prefer to use the typed API EntityMut::get_change_ticks
where possible and only
use this in cases where the actual component types are not known at
compile time.
sourcepub fn insert<T>(&mut self, bundle: T) -> &mut EntityMut<'w>where
T: Bundle,
pub fn insert<T>(&mut self, bundle: T) -> &mut EntityMut<'w>where T: Bundle,
Adds a Bundle
of components to the entity.
This will overwrite any previous value(s) of the same component type.
sourcepub unsafe fn insert_by_id(
&mut self,
component_id: ComponentId,
component: OwningPtr<'_, Aligned>
) -> &mut EntityMut<'w>
pub unsafe fn insert_by_id( &mut self, component_id: ComponentId, component: OwningPtr<'_, Aligned> ) -> &mut EntityMut<'w>
Inserts a dynamic Component
into the entity.
This will overwrite any previous value(s) of the same component type.
You should prefer to use the typed API EntityMut::insert
where possible.
Safety
ComponentId
must be from the same world asEntityMut
OwningPtr
must be a valid reference to the type represented byComponentId
sourcepub unsafe fn insert_by_ids<'a, I>(
&mut self,
component_ids: &[ComponentId],
iter_components: I
) -> &mut EntityMut<'w>where
I: Iterator<Item = OwningPtr<'a, Aligned>>,
pub unsafe fn insert_by_ids<'a, I>( &mut self, component_ids: &[ComponentId], iter_components: I ) -> &mut EntityMut<'w>where I: Iterator<Item = OwningPtr<'a, Aligned>>,
Inserts a dynamic Bundle
into the entity.
This will overwrite any previous value(s) of the same component type.
You should prefer to use the typed API EntityMut::insert
where possible.
If your Bundle
only has one component, use the cached API EntityMut::insert_by_id
.
If possible, pass a sorted slice of ComponentId
to maximize caching potential.
Safety
- Each
ComponentId
must be from the same world asEntityMut
- Each
OwningPtr
must be a valid reference to the type represented byComponentId
sourcepub fn take<T>(&mut self) -> Option<T>where
T: Bundle,
pub fn take<T>(&mut self) -> Option<T>where T: Bundle,
Removes all components in the Bundle
from the entity and returns their previous values.
Note: If the entity does not have every component in the bundle, this method will not remove any of them.
sourcepub fn remove<T>(&mut self) -> &mut EntityMut<'w>where
T: Bundle,
pub fn remove<T>(&mut self) -> &mut EntityMut<'w>where T: Bundle,
Removes any components in the Bundle
from the entity.
sourcepub fn world(&self) -> &World
pub fn world(&self) -> &World
Gets read-only access to the world that the current entity belongs to.
sourcepub unsafe fn world_mut(&mut self) -> &mut World
pub unsafe fn world_mut(&mut self) -> &mut World
Returns this EntityMut
’s world.
See EntityMut::world_scope
or EntityMut::into_world_mut
for a safe alternative.
Safety
Caller must not modify the world in a way that changes the current entity’s location
If the caller does do something that could change the location, self.update_location()
must be called before using any other methods on this EntityMut
.
sourcepub fn into_world_mut(self) -> &'w mut World
pub fn into_world_mut(self) -> &'w mut World
Returns this EntityMut
’s World
, consuming itself.
sourcepub fn world_scope<U>(&mut self, f: impl FnOnce(&mut World) -> U) -> U
pub fn world_scope<U>(&mut self, f: impl FnOnce(&mut World) -> U) -> U
Gives mutable access to this EntityMut
’s World
in a temporary scope.
This is a safe alternative to using Self::world_mut
.
Examples
#[derive(Resource, Default, Clone, Copy)]
struct R(u32);
// This closure gives us temporary access to the world.
let new_r = entity.world_scope(|world: &mut World| {
// Mutate the world while we have access to it.
let mut r = world.resource_mut::<R>();
r.0 += 1;
// Return a value from the world before giving it back to the `EntityMut`.
*r
});
sourcepub fn update_location(&mut self)
pub fn update_location(&mut self)
Updates the internal entity location to match the current location in the internal
World
.
This is only required when using the unsafe function EntityMut::world_mut
,
which enables the location to change.
source§impl<'w> EntityMut<'w>
impl<'w> EntityMut<'w>
sourcepub fn get_by_id(&self, component_id: ComponentId) -> Option<Ptr<'_, Aligned>>
pub fn get_by_id(&self, component_id: ComponentId) -> Option<Ptr<'_, Aligned>>
Gets the component of the given ComponentId
from the entity.
You should prefer to use the typed API EntityMut::get
where possible and only
use this in cases where the actual component types are not known at
compile time.
Unlike EntityMut::get
, this returns a raw pointer to the component,
which is only valid while the EntityMut
is alive.
sourcepub fn get_mut_by_id(
&mut self,
component_id: ComponentId
) -> Option<MutUntyped<'_>>
pub fn get_mut_by_id( &mut self, component_id: ComponentId ) -> Option<MutUntyped<'_>>
Gets a MutUntyped
of the component of the given ComponentId
from the entity.
You should prefer to use the typed API EntityMut::get_mut
where possible and only
use this in cases where the actual component types are not known at
compile time.
Unlike EntityMut::get_mut
, this returns a raw pointer to the component,
which is only valid while the EntityMut
is alive.
Trait Implementations§
source§impl<'w> BuildWorldChildren for EntityMut<'w>
impl<'w> BuildWorldChildren for EntityMut<'w>
source§fn with_children(
&mut self,
spawn_children: impl FnOnce(&mut WorldChildBuilder<'_>)
) -> &mut EntityMut<'w>
fn with_children( &mut self, spawn_children: impl FnOnce(&mut WorldChildBuilder<'_>) ) -> &mut EntityMut<'w>
WorldChildBuilder
.source§fn push_children(&mut self, children: &[Entity]) -> &mut EntityMut<'w>
fn push_children(&mut self, children: &[Entity]) -> &mut EntityMut<'w>
source§fn insert_children(
&mut self,
index: usize,
children: &[Entity]
) -> &mut EntityMut<'w>
fn insert_children( &mut self, index: usize, children: &[Entity] ) -> &mut EntityMut<'w>
source§fn remove_children(&mut self, children: &[Entity]) -> &mut EntityMut<'w>
fn remove_children(&mut self, children: &[Entity]) -> &mut EntityMut<'w>
source§impl<'w> DespawnRecursiveExt for EntityMut<'w>
impl<'w> DespawnRecursiveExt for EntityMut<'w>
source§fn despawn_recursive(self)
fn despawn_recursive(self)
Despawns the provided entity and its children.
source§fn despawn_descendants(&mut self) -> &mut EntityMut<'w>
fn despawn_descendants(&mut self) -> &mut EntityMut<'w>
Auto Trait Implementations§
impl<'w> !RefUnwindSafe for EntityMut<'w>
impl<'w> Send for EntityMut<'w>
impl<'w> Sync for EntityMut<'w>
impl<'w> Unpin for EntityMut<'w>
impl<'w> !UnwindSafe for EntityMut<'w>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.