🍃 Bevy Tweening

License: MIT/Apache Doc Crate Build Status Coverage Status Bevy tracking

Tweening animation plugin for the Bevy game engine.

Features

Usage

Dependency

Add to Cargo.toml:

toml [dependencies] bevy_tweening = "0.4"

This crate supports the following features:

| Feature | Default | Description | |---|---|---| | bevy_sprite | Yes | Includes built-in lenses for some Sprite-related components. | | bevy_ui | Yes | Includes built-in lenses for some UI-related components. |

System setup

Add the TweeningPlugin to your app:

rust App::default() .add_plugins(DefaultPlugins) .add_plugin(TweeningPlugin) .run();

Animate a component

Animate the transform position of an entity by creating a Tween animation for the tranform, and adding an Animator component with that tween:

```rust // Create a single animation (tween) to move an entity. let tween = Tween::new( // Use a quadratic easing on both endpoints. EaseFunction::QuadraticInOut, // Loop animation back and forth. TweeningType::PingPong, // Animation time (one way only; for ping-pong it takes 2 seconds // to come back to start). Duration::from_secs(1), // The lens gives the Animator access to the Transform component, // to animate it. It also contains the start and end values associated // with the animation ratios 0. and 1. TransformPositionLens { start: Vec3::new(0., 0., 0.), end: Vec3::new(1., 2., -4.), }, );

commands // Spawn a Sprite entity to animate the position of. .spawnbundle(SpriteBundle { sprite: Sprite { color: Color::RED, customsize: Some(Vec2::new(size, size)), ..Default::default() }, ..Default::default() }) // Add an Animator component to control and execute the animation. .insert(Animator::new(tween)); } ```

Chaining animations

Bevy Tweening supports several types of tweenables, building blocks that can be combined to form complex animations. A tweenable is a type implementing the Tweenable<T> trait.

Most tweenables can be chained with the then() operator:

rust // Produce a sequence executing 'tween1' then 'tween2' let tween1 = Tween { [...] } let tween2 = Tween { [...] } let seq = tween1.then(tween2);

Predefined Lenses

A small number of predefined lenses are available for the most common use cases, which also serve as examples. Users are encouraged to write their own lens to tailor the animation to their use case.

The naming scheme for predefined lenses is "<TargetName><FieldName>Lens", where <TargetName> is the name of the target Bevy component or asset type which is queried by the internal animation system to be modified, and <FieldName> is the field which is mutated in place by the lens. All predefined lenses modify a single field. Custom lenses can be written which modify multiple fields at once.

Bevy Components

| Target Component | Animated Field | Lens | Feature | |---|---|---|---| | Transform | translation | TransformPositionLens | | | | rotation (Quat)¹ | TransformRotationLens | | | | rotation (angle)² | TransformRotateXLens | | | | rotation (angle)² | TransformRotateYLens | | | | rotation (angle)² | TransformRotateZLens | | | | rotation (angle)² | TransformRotateAxisLens | | | | scale | TransformScaleLens | | | Sprite | color | SpriteColorLens | bevy_sprite | | Style | position | UiPositionLens | bevy_ui | | Text | TextStyle::color | TextColorLens | bevy_ui |

¹ Shortest-path interpolation between two rotations, using Quat::slerp().

² Angle-based interpolation, valid for rotations over ½ turn.

See the comparison of rotation lenses for details.

Bevy Assets

| Target Asset | Animated Field | Lens | Feature | |---|---|---|---| | ColorMaterial | color | ColorMaterialColorLens | bevy_sprite |

Custom lens

A custom lens allows animating any field or group of fields of a Bevy component or asset. A custom lens is a type implementing the Lens trait, which is generic over the type of component or asset.

```rust struct MyXAxisLens { start: f32, end: f32, }

impl Lens for MyXAxisLens { fn lerp(&self, target: &mut Tranform, ratio: f32) -> f32 { let start = Vec3::new(self.start, 0., 0.); let end = Vec3::new(self.end, 0., 0.); target.translation = start + (end - start) * ratio; } } ```

Note that the lens always linearly interpolates the field(s) of the component or asset. The type of easing applied modifies the rate at which the ratio parameter evolves, and is applied before the lerp() function is invoked.

The basic formula for lerp (linear interpolation) is either of:

The two formulations are mathematically equivalent, but one may be more suited than the other depending on the type interpolated and the operations available, and the potential floating-point precision errors.

Custom component support

Custom components are animated like built-in Bevy ones, via a lens.

```rust

[derive(Component)]

struct MyCustomComponent(f32);

struct MyCustomLens { start: f32, end: f32, }

impl Lens for MyCustomLens { fn lerp(&self, target: &mut MyCustomComponent, ratio: f32) -> f32 { target.0 = self.start + (self.end - self.start) * ratio; } } ```

Then, in addition, the system component_animator_system::<CustomComponent> needs to be added to the application. This system will extract each frame all CustomComponent instances with an Animator<CustomComponent> on the same entity, and animate the component via its animator.

Custom asset support

The process is similar to custom components, creating a custom lens for the custom asset. The system to add is asset_animator_system::<CustomAsset>.

Examples

See the examples/ folder.

menu

rust cargo run --example menu --features="bevy/bevy_winit"

menu

sprite_color

rust cargo run --example sprite_color --features="bevy/bevy_winit"

sprite_color

transform_rotation

rust cargo run --example transform_rotation --features="bevy/bevy_winit"

sprite_color

transform_translation

rust cargo run --example transform_translation --features="bevy/bevy_winit"

sprite_color

colormaterial_color

rust cargo run --example colormaterial_color --features="bevy/bevy_winit"

colormaterial_color

ui_position

rust cargo run --example ui_position --features="bevy/bevy_winit"

ui_position

sequence

rust cargo run --example sequence --features="bevy/bevy_winit"

sequence

Ease Functions

Many ease functions are available:

Compatible Bevy versions

The main branch is compatible with the latest Bevy release.

Compatibility of bevy_tweening versions:

| bevy_tweening | bevy | | :-- | :-- | | 0.4 | 0.7 | | 0.2-0.3 | 0.6 | | 0.1 | 0.5 |

Due to the fast-moving nature of Bevy and frequent breaking changes, and the limited resources to maintan 🍃 Bevy Tweening, the main (unreleased) Bevy branch is not supported.

Comparison with bevy_easings

The bevy_tweening library started as a fork of the bevy_easings library by François Mocker, with the goals to: