Struct bevy::ecs::prelude::ReflectComponent
pub struct ReflectComponent(/* private fields */);
Expand description
A struct used to operate on reflected Component
of a type.
A ReflectComponent
for type T
can be obtained via
bevy_reflect::TypeRegistration::data
.
Implementations§
§impl ReflectComponent
impl ReflectComponent
pub fn from_world(&self, world: &mut World) -> Box<dyn Reflect, Global>
pub fn from_world(&self, world: &mut World) -> Box<dyn Reflect, Global>
Constructs default reflected Component
from world using from_world()
.
pub fn insert(
&self,
entity: &mut EntityWorldMut<'_>,
component: &(dyn Reflect + 'static)
)
pub fn insert( &self, entity: &mut EntityWorldMut<'_>, component: &(dyn Reflect + 'static) )
pub fn apply(
&self,
entity: &mut EntityWorldMut<'_>,
component: &(dyn Reflect + 'static)
)
pub fn apply( &self, entity: &mut EntityWorldMut<'_>, component: &(dyn Reflect + 'static) )
pub fn apply_or_insert(
&self,
entity: &mut EntityWorldMut<'_>,
component: &(dyn Reflect + 'static)
)
pub fn apply_or_insert( &self, entity: &mut EntityWorldMut<'_>, component: &(dyn Reflect + 'static) )
Uses reflection to set the value of this Component
type in the entity to the given value or insert a new one if it does not exist.
pub fn remove(&self, entity: &mut EntityWorldMut<'_>)
pub fn remove(&self, entity: &mut EntityWorldMut<'_>)
Removes this Component
type from the entity. Does nothing if it doesn’t exist.
pub fn reflect<'a>(
&self,
entity: EntityRef<'a>
) -> Option<&'a (dyn Reflect + 'static)>
pub fn reflect<'a>( &self, entity: EntityRef<'a> ) -> Option<&'a (dyn Reflect + 'static)>
Gets the value of this Component
type from the entity as a reflected reference.
pub fn reflect_mut<'a>(
&self,
entity: &'a mut EntityWorldMut<'_>
) -> Option<Mut<'a, dyn Reflect>>
pub fn reflect_mut<'a>( &self, entity: &'a mut EntityWorldMut<'_> ) -> Option<Mut<'a, dyn Reflect>>
Gets the value of this Component
type from the entity as a mutable reflected reference.
pub unsafe fn reflect_unchecked_mut<'a>(
&self,
entity: UnsafeEntityCell<'a>
) -> Option<Mut<'a, dyn Reflect>>
pub unsafe fn reflect_unchecked_mut<'a>( &self, entity: UnsafeEntityCell<'a> ) -> Option<Mut<'a, dyn Reflect>>
Safety
This method does not prevent you from having two mutable pointers to the same data, violating Rust’s aliasing rules. To avoid this:
- Only call this method with a
UnsafeEntityCell
that may be used to mutably access the component on the entityentity
- Don’t call this method more than once in the same scope for a given
Component
.
pub fn copy(
&self,
source_world: &World,
destination_world: &mut World,
source_entity: Entity,
destination_entity: Entity
)
pub fn copy( &self, source_world: &World, destination_world: &mut World, source_entity: Entity, destination_entity: Entity )
pub fn new(fns: ReflectComponentFns) -> ReflectComponent
pub fn new(fns: ReflectComponentFns) -> ReflectComponent
Create a custom implementation of ReflectComponent
.
This is an advanced feature, useful for scripting implementations, that should not be used by most users unless you know what you are doing.
Usually you should derive Reflect
and add the #[reflect(Component)]
component
to generate a ReflectComponent
implementation automatically.
See ReflectComponentFns
for more information.
pub fn fn_pointers(&self) -> &ReflectComponentFns
pub fn fn_pointers(&self) -> &ReflectComponentFns
The underlying function pointers implementing methods on ReflectComponent
.
This is useful when you want to keep track locally of an individual function pointer.
Calling TypeRegistry::get
followed by
TypeRegistration::data::<ReflectComponent>
can be costly if done several
times per frame. Consider cloning ReflectComponent
and keeping it
between frames, cloning a ReflectComponent
is very cheap.
If you only need a subset of the methods on ReflectComponent
,
use fn_pointers
to get the underlying ReflectComponentFns
and copy the subset of function pointers you care about.
Trait Implementations§
§impl Clone for ReflectComponent
impl Clone for ReflectComponent
§fn clone(&self) -> ReflectComponent
fn clone(&self) -> ReflectComponent
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl<C> FromType<C> for ReflectComponentwhere
C: Component + Reflect + FromWorld,
impl<C> FromType<C> for ReflectComponentwhere C: Component + Reflect + FromWorld,
fn from_type() -> ReflectComponent
Auto Trait Implementations§
impl RefUnwindSafe for ReflectComponent
impl Send for ReflectComponent
impl Sync for ReflectComponent
impl Unpin for ReflectComponent
impl UnwindSafe for ReflectComponent
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for Twhere
U: ShaderType,
&'a T: for<'a> Into<U>,
impl<T, U> AsBindGroupShaderType<U> for Twhere U: ShaderType, &'a T: for<'a> Into<U>,
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.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.