[][src]Trait bevy_easings::CustomComponentEase

pub trait CustomComponentEase: Sized {
    fn ease(
        start: Option<Self>,
        end: Self,
        ease_function: EaseFunction,
        easing_type: EasingType
    ) -> EasingComponent<Self> { ... }
fn ease_to(
        self,
        target: Self,
        ease_function: EaseFunction,
        easing_type: EasingType
    ) -> EasingComponent<Self> { ... } }

Trait to mark custom component that can be eased. It will be automatically implemented if the custom component implement Lerp

Provided methods

fn ease(
    start: Option<Self>,
    end: Self,
    ease_function: EaseFunction,
    easing_type: EasingType
) -> EasingComponent<Self>

Create a new easing. If no start is provided, it will try to use the current value of the component for the target entity

fn ease_to(
    self,
    target: Self,
    ease_function: EaseFunction,
    easing_type: EasingType
) -> EasingComponent<Self>

Create a new easing with the current component value as a starting point

Loading content...

Implementors

impl<T> CustomComponentEase for T where
    T: Lerp<Scalar = f32>, 
[src]

Loading content...