[][src]Function bevy_easings::custom_ease_system

pub fn custom_ease_system<T: CustomComponentEase + Component>(
    commands: Commands,
    time: Res<'_, Time>,
    entity: Entity,
    easing: Option<Mut<'_, EasingComponent<T>>>,
    easing_chain: Option<Mut<'_, EasingChainComponent<T>>>,
    object: Mut<'_, T>
) where
    T: Lerp<Scalar = f32> + Default

Ease system for custom component. Add this system to your application with your component as a type parameter.