Struct elementalist::player::bundle::PlayerBundle
source · pub struct PlayerBundle {
pub movement: MovementBundle,
pub sprite: SpriteSheetBundle,
pub health: Health,
pub mana: Mana,
pub stats: StatBundle,
pub xp: Xp,
pub player: Player,
pub kinematic_controller: KinematicCharacterController,
pub collider: Collider,
pub rigid_body: RigidBody,
pub layer: Layer,
}
Expand description
PlayerBundle
is a bundle of components that are used to create the player’s entity. This is
used to spawn the player’s entity in the game. They are a set of components that are integral
to the player and we want to ensure that they are always present when the player is spawned.
These are specifically related to spawning the [PlayerAvatar
], and are used to track the
player’s health, mana, stats, and experience points while in a game run. The overall player
skills and unlocked spells are tracked in another resource (todo!()
).
Fields§
§movement: MovementBundle
The player’s movement bundle.
sprite: SpriteSheetBundle
The player’s sprite bundle.
health: Health
The player’s health.
mana: Mana
The player’s mana.
stats: StatBundle
The player’s stats.
xp: Xp
The player’s experience points.
player: Player
Player marker component.
kinematic_controller: KinematicCharacterController
Player controller marker component (rapier)
collider: Collider
Physics collider
rigid_body: RigidBody
Physics rigid body
layer: Layer
2d Layer position
Trait Implementations§
impl Bundle for PlayerBundle
impl DynamicBundle for PlayerBundle
Auto Trait Implementations§
impl !RefUnwindSafe for PlayerBundle
impl Send for PlayerBundle
impl Sync for PlayerBundle
impl Unpin for PlayerBundle
impl !UnwindSafe for PlayerBundle
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
§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>) -> 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
.§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
.§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.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.