pub struct SpatialBundle {
pub visibility: Visibility,
pub inherited_visibility: InheritedVisibility,
pub view_visibility: ViewVisibility,
pub transform: Transform,
pub global_transform: GlobalTransform,
}
Transform
and Visibility
components instead.
Inserting Transform
will now also insert a GlobalTransform
automatically.
Inserting ‘Visibility’ will now also insert InheritedVisibility
and ViewVisibility
automatically.Expand description
A Bundle
that allows the correct positional rendering of an entity.
It consists of transform components, controlling position, rotation and scale of the entity, but also visibility components, which determine whether the entity is visible or not.
Parent-child hierarchies of entities must contain
all the Component
s in this Bundle
to be rendered correctly.
Fields§
§visibility: Visibility
Transform
and Visibility
components instead.
Inserting Transform
will now also insert a GlobalTransform
automatically.
Inserting ‘Visibility’ will now also insert InheritedVisibility
and ViewVisibility
automatically.The visibility of the entity.
inherited_visibility: InheritedVisibility
Transform
and Visibility
components instead.
Inserting Transform
will now also insert a GlobalTransform
automatically.
Inserting ‘Visibility’ will now also insert InheritedVisibility
and ViewVisibility
automatically.The inherited visibility of the entity.
view_visibility: ViewVisibility
Transform
and Visibility
components instead.
Inserting Transform
will now also insert a GlobalTransform
automatically.
Inserting ‘Visibility’ will now also insert InheritedVisibility
and ViewVisibility
automatically.The view visibility of the entity.
transform: Transform
Transform
and Visibility
components instead.
Inserting Transform
will now also insert a GlobalTransform
automatically.
Inserting ‘Visibility’ will now also insert InheritedVisibility
and ViewVisibility
automatically.The transform of the entity.
global_transform: GlobalTransform
Transform
and Visibility
components instead.
Inserting Transform
will now also insert a GlobalTransform
automatically.
Inserting ‘Visibility’ will now also insert InheritedVisibility
and ViewVisibility
automatically.The global transform of the entity.
Implementations§
Source§impl SpatialBundle
impl SpatialBundle
Sourcepub const INHERITED_IDENTITY: SpatialBundle
pub const INHERITED_IDENTITY: SpatialBundle
A SpatialBundle
with inherited visibility and identity transform.
Sourcepub const HIDDEN_IDENTITY: SpatialBundle
pub const HIDDEN_IDENTITY: SpatialBundle
An invisible SpatialBundle
with identity transform.
Sourcepub const fn from_transform(transform: Transform) -> SpatialBundle
pub const fn from_transform(transform: Transform) -> SpatialBundle
Creates a new SpatialBundle
from a Transform
.
This initializes GlobalTransform
as identity, and visibility as visible
Trait Implementations§
Source§impl Bundle for SpatialBundle
impl Bundle for SpatialBundle
Source§fn get_component_ids(
components: &Components,
ids: &mut impl FnMut(Option<ComponentId>),
)
fn get_component_ids( components: &Components, ids: &mut impl FnMut(Option<ComponentId>), )
Source§fn register_required_components(
components: &mut Components,
storages: &mut Storages,
required_components: &mut RequiredComponents,
)
fn register_required_components( components: &mut Components, storages: &mut Storages, required_components: &mut RequiredComponents, )
Bundle
.Source§impl Clone for SpatialBundle
impl Clone for SpatialBundle
Source§fn clone(&self) -> SpatialBundle
fn clone(&self) -> SpatialBundle
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SpatialBundle
impl Debug for SpatialBundle
Source§impl Default for SpatialBundle
impl Default for SpatialBundle
Source§fn default() -> SpatialBundle
fn default() -> SpatialBundle
Source§impl From<Transform> for SpatialBundle
impl From<Transform> for SpatialBundle
Source§fn from(transform: Transform) -> SpatialBundle
fn from(transform: Transform) -> SpatialBundle
impl DynamicBundle for SpatialBundle
Auto Trait Implementations§
impl Freeze for SpatialBundle
impl RefUnwindSafe for SpatialBundle
impl Send for SpatialBundle
impl Sync for SpatialBundle
impl Unpin for SpatialBundle
impl UnwindSafe for SpatialBundle
Blanket Implementations§
Source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
Source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
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
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§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.Source§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.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
Source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates Self
using default()
.
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more