Available on crate feature
bevy_reflect
only.Expand description
Types that enable reflection support.
Structs§
- A
Resource
storingTypeRegistry
for type registrations relevant to a whole app. - A struct used to operate on reflected
Bundle
trait of a type. - The raw function pointers needed to make up a
ReflectBundle
. - A struct used to operate on reflected
Component
trait of a type. - The raw function pointers needed to make up a
ReflectComponent
. - A struct used to operate on the reflected
FromWorld
trait of a type. - The raw function pointers needed to make up a
ReflectFromWorld
. - For a specific type of value, this maps any fields with values of type
Entity
to a new world. - A struct used to operate on reflected
Resource
of a type. - The raw function pointers needed to make up a
ReflectResource
. - For a reflected value, apply an operation to all contained entities.
- For a reflected value, apply an operation to mutable references to all contained entities.
Traits§
- An extension trait for
EntityCommands
for reflection related functions
Functions§
- Creates a
T
from a&dyn PartialReflect
.