//! Demonstrates the behavior of the built-in easing functions. use bevy::{prelude::*, sprite::Anchor}; #[derive(Component)] struct SelectedEaseFunction(EaseFunction, Color); fn main() { App::new() .add_plugins(DefaultPlugins) .add_systems(Startup, setup) .add_systems(Update, display_curves) .run(); } fn setup(mut commands: Commands) { commands.spawn(Camera2d); let text_style = TextStyle { font_size: 10.0, ..default() }; for (i, functions) in [ EaseFunction::SineIn, EaseFunction::SineOut, EaseFunction::SineInOut, EaseFunction::QuadraticIn, EaseFunction::QuadraticOut, EaseFunction::QuadraticInOut, EaseFunction::CubicIn, EaseFunction::CubicOut, EaseFunction::CubicInOut, EaseFunction::QuarticIn, EaseFunction::QuarticOut, EaseFunction::QuarticInOut, EaseFunction::QuinticIn, EaseFunction::QuinticOut, EaseFunction::QuinticInOut, EaseFunction::CircularIn, EaseFunction::CircularOut, EaseFunction::CircularInOut, EaseFunction::ExponentialIn, EaseFunction::ExponentialOut, EaseFunction::ExponentialInOut, EaseFunction::ElasticIn, EaseFunction::ElasticOut, EaseFunction::ElasticInOut, EaseFunction::BackIn, EaseFunction::BackOut, EaseFunction::BackInOut, EaseFunction::BounceIn, EaseFunction::BounceOut, EaseFunction::BounceInOut, EaseFunction::Linear, EaseFunction::Steps(4), EaseFunction::Elastic(50.0), ] .chunks(3) .enumerate() { for (j, function) in functions.iter().enumerate() { let color = Hsla::hsl(i as f32 / 11.0 * 360.0, 0.8, 0.75).into(); commands .spawn(( Text2dBundle { text: Text::from_section( format!("{:?}", function), TextStyle { color, ..text_style.clone() }, ), transform: Transform::from_xyz( i as f32 * 113.0 - 1280.0 / 2.0 + 25.0, -100.0 - ((j as f32 * 250.0) - 300.0), 0.0, ), text_anchor: Anchor::TopLeft, ..default() }, SelectedEaseFunction(*function, color), )) .with_children(|p| { p.spawn(SpriteBundle { sprite: Sprite { custom_size: Some(Vec2::new(5.0, 5.0)), color, ..default() }, transform: Transform::from_xyz(SIZE_PER_FUNCTION + 5.0, 15.0, 0.0), ..default() }); p.spawn(SpriteBundle { sprite: Sprite { custom_size: Some(Vec2::new(4.0, 4.0)), color, ..default() }, transform: Transform::from_xyz(0.0, 0.0, 0.0), ..default() }); }); } } commands.spawn( TextBundle::from_section("", TextStyle::default()).with_style(Style { position_type: PositionType::Absolute, bottom: Val::Px(12.0), left: Val::Px(12.0), ..default() }), ); } const SIZE_PER_FUNCTION: f32 = 95.0; fn display_curves( mut gizmos: Gizmos, ease_functions: Query<(&SelectedEaseFunction, &Transform, &Children)>, mut transforms: Query<&mut Transform, Without>, mut ui: Query<&mut Text, With>, time: Res