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>

source

pub const BACKGROUND_BAR_SHIFT: f32 = 1f32

The shift of the background bar (in the z-axis) relative to the entity’s translation.

source

pub const FOREGROUND_BAR_SHIFT: f32 = 0.100000001f32

The shift of the foreground bar (in the z-axis) relative to the background bar.

source

pub fn new(color_scheme: ColorScheme) -> Self

Create a new progress bar config with the given color scheme.

source

pub const fn with_color_scheme(self, color_scheme: ColorScheme) -> Self

Update the progress bar config with the given color scheme.

source

pub const fn with_background_color(self, color: Color) -> Self

Update the progress bar’s color scheme with the given background color.

source

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.

source

pub fn with_moderate_cutoff(self, cutoff: f32) -> Self

Update the progress bar’s color scheme with the given moderate cutoff.

source

pub fn with_critical_cutoff(self, cutoff: f32) -> Self

Update the progress bar’s color scheme with the given critical cutoff.

source

pub fn with_single_color(self, color: Color) -> Self

Update the progress bar to use a single color for all states.

source

pub const fn with_size(self, size: Vec2) -> Self

Update the progress bar’s size.

source

pub const fn with_position_translation(self, position_translation: Vec3) -> Self

Update the progress bar’s relative position.

source

pub fn set_size(&mut self, size: Vec2)

Set the size of the progress bar.

source

pub fn set_position_translation(&mut self, position_translation: Vec3)

Set the relative position of the progress bar.

source

pub fn set_color_scheme(&mut self, color_scheme: ColorScheme)

Set the color scheme of the progress bar.

source

pub const fn background_color(&self) -> Color

Get the background color.

source

pub fn color(&self, percentage: &T) -> Color

Get the foreground color for the given T.

source

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.

source

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.

source

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.

source

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.

source

pub fn get_state(&self, percentage: &T) -> BarState

Get the current BarState for the given percentage.

source

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>

source§

fn clone(&self) -> ProgressBarConfig<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Percentage + Component> Component for ProgressBarConfig<T>
where Self: Send + Sync + 'static,

§

type Storage = TableStorage

A marker type indicating the storage type used for this component. This must be either [TableStorage] or [SparseStorage].
source§

impl<T: Debug + Percentage + Component> Debug for ProgressBarConfig<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Percentage + Component> Default for ProgressBarConfig<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more

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§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T, U> AsBindGroupShaderType<U> for T
where U: ShaderType, &'a T: for<'a> Into<U>,

§

fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U

Return the T [ShaderType] for self. When used in [AsBindGroup] derives, it is safe to assume that all images in self exist.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<C> Bundle for C
where 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
where F: for<'a> FnMut(&'a mut T) -> OwningPtr<'a>,

§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert 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>

Convert 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)

Convert &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)

Convert &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
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
§

impl<C> DynamicBundle for C
where C: Component,

§

fn get_components(self, func: &mut impl FnMut(StorageType, OwningPtr<'_>))

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

§

impl<T> FromWorld for T
where T: Default,

§

fn from_world(_world: &mut World) -> T

Creates Self using data from the given [World].
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<R, P> ReadPrimitive<R> for P
where R: Read + ReadEndian<P>, P: Default,

source§

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
source§

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
source§

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
source§

impl<T> Same for T

§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

§

fn to_sample_(self) -> U

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> TypeData for T
where T: 'static + Send + Sync + Clone,

§

fn clone_type_data(&self) -> Box<dyn TypeData>

§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,

§

impl<T> SerializableAny for T
where T: 'static + Any + Clone + for<'a> Send + Sync,

§

impl<T> Settings for T
where T: 'static + Send + Sync,

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSync for T
where T: Sync,