Struct game_library::progress_bar::ProgressBarConfig
source · pub struct ProgressBarConfig<T: Percentage + Component> {
pub color_scheme: ColorScheme,
pub size: Vec2,
pub position_translation: Vec3,
/* private fields */
}
Expand description
Configuration of a progress bar.
Fields§
§color_scheme: ColorScheme
The color scheme to use for the progress bar.
size: Vec2
The size of the progress bar.
This is the size to draw the background for the bar, and the foreground bar will be drawn inside of this. At full, the foreground bar will be the same size as the background bar.
position_translation: Vec3
The relative position of the progress bar to the entity it will be attached to.
This is relative to the [Transform.translation
] of the entity.
Implementations§
source§impl<T: Percentage + Component> ProgressBarConfig<T>
impl<T: Percentage + Component> ProgressBarConfig<T>
sourcepub const BACKGROUND_BAR_SHIFT: f32 = 1f32
pub const BACKGROUND_BAR_SHIFT: f32 = 1f32
The shift of the background bar (in the z-axis) relative to the entity’s translation.
sourcepub const FOREGROUND_BAR_SHIFT: f32 = 0.100000001f32
pub const FOREGROUND_BAR_SHIFT: f32 = 0.100000001f32
The shift of the foreground bar (in the z-axis) relative to the background bar.
sourcepub fn new(color_scheme: ColorScheme) -> Self
pub fn new(color_scheme: ColorScheme) -> Self
Create a new progress bar config with the given color scheme.
sourcepub const fn with_color_scheme(self, color_scheme: ColorScheme) -> Self
pub const fn with_color_scheme(self, color_scheme: ColorScheme) -> Self
Update the progress bar config with the given color scheme.
sourcepub const fn with_background_color(self, color: Color) -> Self
pub const fn with_background_color(self, color: Color) -> Self
Update the progress bar’s color scheme with the given background color.
sourcepub fn with_color(self, state: &BarState, color: Color) -> Self
pub fn with_color(self, state: &BarState, color: Color) -> Self
Update the progress bar’s color scheme with the given color for the given state.
sourcepub fn with_moderate_cutoff(self, cutoff: f32) -> Self
pub fn with_moderate_cutoff(self, cutoff: f32) -> Self
Update the progress bar’s color scheme with the given moderate cutoff.
sourcepub fn with_critical_cutoff(self, cutoff: f32) -> Self
pub fn with_critical_cutoff(self, cutoff: f32) -> Self
Update the progress bar’s color scheme with the given critical cutoff.
sourcepub fn with_single_color(self, color: Color) -> Self
pub fn with_single_color(self, color: Color) -> Self
Update the progress bar to use a single color for all states.
sourcepub const fn with_position_translation(self, position_translation: Vec3) -> Self
pub const fn with_position_translation(self, position_translation: Vec3) -> Self
Update the progress bar’s relative position.
sourcepub fn set_position_translation(&mut self, position_translation: Vec3)
pub fn set_position_translation(&mut self, position_translation: Vec3)
Set the relative position of the progress bar.
sourcepub fn set_color_scheme(&mut self, color_scheme: ColorScheme)
pub fn set_color_scheme(&mut self, color_scheme: ColorScheme)
Set the color scheme of the progress bar.
sourcepub const fn background_color(&self) -> Color
pub const fn background_color(&self) -> Color
Get the background color.
sourcepub fn background_transform(&self, entity_transform: &Transform) -> Transform
pub fn background_transform(&self, entity_transform: &Transform) -> Transform
Get the realized [Transform
] for the progress bar background.
This adjusts the translation of the background to be relative to the entity’s translation.
sourcepub fn foreground_transform(
&self,
entity_transform: &Transform,
percentage: &T
) -> Transform
pub fn foreground_transform( &self, entity_transform: &Transform, percentage: &T ) -> Transform
Get the realized [Transform
] for the progress bar foreground.
This adjusts the translation of the foreground to be relative to the entity’s translation. It also adjusts the translation of the foreground to be centered on the entity’s translation.
sourcepub fn background_mesh(&self) -> Mesh
pub fn background_mesh(&self) -> Mesh
Get the mesh for the progress bar background.
This is a [Quad
] with the size of the progress bar.
sourcepub fn foreground_mesh(&self, percentage: &T) -> Mesh
pub fn foreground_mesh(&self, percentage: &T) -> Mesh
Get the mesh for the progress bar foreground.
This is a [Quad
] with the size of the progress bar foreground, which is the size of the progress
bar background scaled by the percentage.
sourcepub fn get_state(&self, percentage: &T) -> BarState
pub fn get_state(&self, percentage: &T) -> BarState
Get the current BarState
for the given percentage.
sourcepub const fn color_for_state(&self, state: &BarState) -> Color
pub const fn color_for_state(&self, state: &BarState) -> Color
Get the color for the given BarState
.
Trait Implementations§
source§impl<T: Clone + Percentage + Component> Clone for ProgressBarConfig<T>
impl<T: Clone + Percentage + Component> Clone for ProgressBarConfig<T>
source§fn clone(&self) -> ProgressBarConfig<T>
fn clone(&self) -> ProgressBarConfig<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<T: Percentage + Component> Component for ProgressBarConfig<T>
impl<T: Percentage + Component> Component for ProgressBarConfig<T>
source§impl<T: Debug + Percentage + Component> Debug for ProgressBarConfig<T>
impl<T: Debug + Percentage + Component> Debug for ProgressBarConfig<T>
source§impl<T: Percentage + Component> Default for ProgressBarConfig<T>
impl<T: Percentage + Component> Default for ProgressBarConfig<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for ProgressBarConfig<T>where
T: RefUnwindSafe,
impl<T> Send for ProgressBarConfig<T>
impl<T> Sync for ProgressBarConfig<T>
impl<T> Unpin for ProgressBarConfig<T>where
T: Unpin,
impl<T> UnwindSafe for ProgressBarConfig<T>where
T: UnwindSafe,
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<C> Bundle for Cwhere
C: Component,
impl<C> Bundle for Cwhere
C: Component,
fn component_ids( components: &mut Components, storages: &mut Storages, ids: &mut impl FnMut(ComponentId) )
unsafe fn from_components<T, F>(ctx: &mut T, func: &mut F) -> C
§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<C> DynamicBundle for Cwhere
C: Component,
impl<C> DynamicBundle for Cwhere
C: Component,
fn get_components(self, func: &mut impl FnMut(StorageType, OwningPtr<'_>))
§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Self
using data from the given [World
].§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
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian()
.§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.